From: Roland Haeder Date: Mon, 10 Apr 2017 19:12:01 +0000 (+0200) Subject: let's sync sticks X-Git-Url: https://git.mxchange.org/?p=jprojects-scripts.git;a=commitdiff_plain;h=e7bde3cfd9d024e7d5c41619c92d001c3b39fc9f;ds=sidebyside let's sync sticks Signed-off-by: Roland Haeder --- diff --git a/push-stick.sh b/push-stick.sh index d90e0f6..02f2884 100755 --- a/push-stick.sh +++ b/push-stick.sh @@ -40,9 +40,13 @@ for project in ${LIST}; do if [ -n "$2" ] then git push transport :"$2" + echo "$0: Syncing ..." + sync fi git push ${FORCE} --all transport || exit 255 + echo "$0: Syncing ..." + sync elif [ "$1" = "u" ] then if [ -n "$2" ] @@ -55,9 +59,13 @@ for project in ${LIST}; do if [ -n "$2" ] then git push origin :"$2" + echo "$0: Syncing ..." + sync fi git push ${FORCE} --all || exit 255 + echo "$0: Syncing ..." + sync fi done