diff options
Diffstat (limited to 'push.sh')
-rwxr-xr-x | push.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,11 +9,12 @@ function status { STR=$(git status|grep "Your branch is ahead") if [[ -n "${STR}" ]]; then echo "Pushing $2" - git push + git push $CMD fi cd "$DIR" } +CMD="$*" status . evol-all status client-data client-data status server-code server-code |