X-Git-Url: https://git.mxchange.org/?p=jprojects-scripts.git;a=blobdiff_plain;f=push-stick.sh;h=02f28847856183ae55f04be937689d4e7a4b5ec7;hp=d90e0f6e156ed26b8b60e177e71c24fb824edf27;hb=2b6a695b95862ee7fed32ca24a3036d0d200d0e6;hpb=92c984c29e9a0eab7b2fa54db6cec853342bf789 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