X-Git-Url: https://git.mxchange.org/?p=jprojects-scripts.git;a=blobdiff_plain;f=push-stick.sh;h=1e0b4b58712994bbe947d2ddf7376f8856a8ee08;hp=2c6f5209b4f4e448f26c69c442febd15ec77d4ef;hb=ea626de0fe422e33d641f108b0a940bbfc0afcc3;hpb=b4766b712c1c0d5b464de63811f51dbfa549f588 diff --git a/push-stick.sh b/push-stick.sh index 2c6f520..1e0b4b5 100755 --- a/push-stick.sh +++ b/push-stick.sh @@ -26,19 +26,7 @@ for project in ${LIST}; do echo "$0: Processing '${project}',mode='$1' ..." cd "${JPROJECTS_HOME}/${project}" || exit 255 - SKIP_TEST="${project:0:9}" - - if [ -z "$2" -o "${SKIP_TEST}" = "jratecalc" ] - then - echo "$0: Pushing '${project}',mode='$1' ..." - git push --all || exit 255 - fi - - if [ "${SKIP_TEST}" = "jratecalc" ] - then - echo "$0: Not continuing for jratecalc project '${project}'." - continue - elif [ "$1" = "d" ] + if [ "$1" = "d" ] then git push --all daedalus || exit 255 elif [ "$1" = "t" ] @@ -47,7 +35,10 @@ for project in ${LIST}; do elif [ "$1" = "u" ] then git push --all upstream || exit 255 + else + git push --all || exit 255 fi - - cd "${JPROJECTS_HOME}" done + +echo "$0: All done." +exit 0