X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=d2dee19c6e3423e6beb55734860115f48b1a95d2;hb=58c11b96766b6c5d06ea118c9612f275b4bb0dd7;hp=0eeb1155f7a6b32b447396cdfc370a1f01e48784;hpb=bb0d2b761bd6986a18a6d0aec13eccb8ebbb9dab;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index 0eeb1155..d2dee19c 100755 --- a/update.sh +++ b/update.sh @@ -7,24 +7,27 @@ 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/honours 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)" +fortune="/usr/games/fortune" +message=$(echo "Automatic commit $(date)"; echo ""; $fortune; echo "") +$git commit -m "$message" if [ "$?" == 0 ]; then - git push git.ucc 2>&1 >> commits.log + echo "Commit at $(date)" >> commits.log + $git push git.ucc 2>&1 >> commits.log fi -#kill $SSH_AGENT_PID +kill -9 $SSH_AGENT_PID