From: Simon Ruderich Date: Wed, 18 Feb 2009 23:59:28 +0000 (+0100) Subject: Run status after a fetch in sync.sh. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=0ac6aa77b7b14c940a6b85f633326b57bc03f043 Run status after a fetch in sync.sh. So new changes are easily detected. --- diff --git a/sync.sh b/sync.sh index 5745ae5..88b59e2 100755 --- a/sync.sh +++ b/sync.sh @@ -43,3 +43,8 @@ for project in `find . -name .git -type d`; do cd "$pwd" done + +# Run status after a fetch to see new changes. +if [ $method = fetch ]; then + ./sync.sh status +fi