From ecc58b7e275ce83963a2835e67100be4305dd72b Mon Sep 17 00:00:00 2001 From: Sam Moore Date: Wed, 25 Jul 2012 17:14:17 +0800 Subject: [PATCH] Automatic commit at Wed Jul 25 17:14:17 WST 2012 --- update.sh | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/update.sh b/update.sh index ec8888fe..92116429 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) +ssh-add ~/.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)" +$git commit -m "Automatic commit at $(date)" 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 -- 2.20.1