X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=ee12bdfc98e4b492dee9dd74f7f6bf60a5f7974a;hb=7d2570c6aac0c6a9f358af503ebc5485acad40a3;hp=ec8888fe363bb46c578867067059cbddd65519c1;hpb=8e9a9f1193ea77f083ada9e5a345003218b66c3b;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index ec8888fe..ee12bdfc 100755 --- a/update.sh +++ b/update.sh @@ -7,24 +7,28 @@ 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 -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)" +#I've cracked it (derp)! +fortune="/usr/games/fortune" +message=$(echo "Automatic commit $(date)"; $fortune; echo "") +$git commit -m "$message" if [ "$?" == 0 ]; then echo "Commit at $(date)" >> commits.log - git push git.ucc 2>&1 >> commits.log + $git push git.ucc 2>&1 >> commits.log fi -#kill $SSH_AGENT_PID +kill -9 $SSH_AGENT_PID