From c7c267e994065e73a8208fafbaa44422f42708c9 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 19 Oct 2015 05:49:28 -0700 Subject: [PATCH] update 7 --- autoupdate | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/autoupdate b/autoupdate index ba40c9f..55aeca0 100755 --- a/autoupdate +++ b/autoupdate @@ -3,10 +3,10 @@ set -e alias db="dropbox_uploader" rm -r lib -db download py/lib >/dev/null +db -q download py/lib if [ ! -d .git ]; then - git init >/dev/null + git -q init [ -e version ] && rm version git add .gitignore '*' '**/*' else @@ -24,6 +24,6 @@ fi let version++ || true # -e mode doesn't like this normally echo $version > version -git commit -m "update $version" . >/dev/null +git commit -qm "update $version" . >/dev/null -git remote | grep -Fxq origin && git push origin master +git remote | grep -Fxq origin && git push -q origin master