X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=d2dee19c6e3423e6beb55734860115f48b1a95d2;hb=58c11b96766b6c5d06ea118c9612f275b4bb0dd7;hp=ed8f85ed84a8bb044a533627f5a090a4ac08276c;hpb=3e0bbeaa77f2305ae77c99654c3e46474fe0a0e2;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index ed8f85ed..d2dee19c 100755 --- a/update.sh +++ b/update.sh @@ -2,18 +2,32 @@ # Script to update all the honours stuff on a regular basis -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 +# Need to cd to the directory, otherwise nothing will work +directory="/home/sam/Documents/University/honours/" +cd "$directory" -git commit -m "Automatic commit at $(date)" +# Need to do this too. Apparently +git="/usr/bin/git" +eval $(ssh-agent) 2>/dev/null +ssh-add /home/sam/.ssh/honours 2>/dev/null + +$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 + +fortune="/usr/games/fortune" +message=$(echo "Automatic commit $(date)"; echo ""; $fortune; echo "") +$git commit -m "$message" if [ "$?" == 0 ]; then - git push git.ucc + echo "Commit at $(date)" >> commits.log + $git push git.ucc 2>&1 >> commits.log fi + +kill -9 $SSH_AGENT_PID