X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=ef923114dc5f58c1421d2cc2951cd1672c96854c;hb=bebb41bd11e47d9526ef622e5b0be5c60476bb5c;hp=a4587a85da8be06c92dfe89693e48abd0f56ebc6;hpb=1ed81a35c80c1f0aad3d1296d15603d89d6242be;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index a4587a85..ef923114 100755 --- a/update.sh +++ b/update.sh @@ -7,24 +7,26 @@ directory="/home/sam/Documents/University/honours/" cd "$directory" # Need to do this too. Apparently -eval `ssh-agent -s` +git="/usr/bin/git" +eval $(ssh-agent) 2>/dev/null +ssh-add /home/sam/.ssh/id_rsa 2>/dev/null -echo "Committing at $(date)" >> commits.log -git add update.sh -git add papers -git add research -git add thesis/proposal/*.tex -git add thesis/proposal/*.pdf -git add thesis/proposal/*.bib -git add thesis/*.tex -git add thesis/*.pdf -git add thesis/*.bib -git add course/semester2 +$git add update.sh +$git add papers +$git add research +$git add thesis/proposal/*.tex +$git add thesis/proposal/*.pdf +$git add thesis/proposal/*.bib +$git add thesis/*.tex +$git add thesis/*.pdf +$git add thesis/*.bib +$git add course/semester2 -git commit -m "Automatic commit at $(date)" +$git commit -m "Automatic commit at $(date)" if [ "$?" == 0 ]; then - git push git.ucc + echo "Commit at $(date)" >> commits.log + $git push git.ucc 2>&1 >> commits.log fi -kill $SSH_AGENT_PID +kill -9 $SSH_AGENT_PID