summaryrefslogtreecommitdiff
path: root/pushall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pushall.sh')
-rwxr-xr-xpushall.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/pushall.sh b/pushall.sh
index 6c2f39d..002ba3d 100755
--- a/pushall.sh
+++ b/pushall.sh
@@ -1,10 +1,13 @@
#!/bin/bash
function status {
+ if [ ! -d "$1" ]; then
+ return
+ fi
DIR=`pwd`
- cd $1
+ cd "$1"
STR=`git status|grep "Your branch is ahead"`
- if [[ -n ${STR} ]]; then
+ if [[ -n "${STR}" ]]; then
echo "pusing $2"
git push
fi
@@ -17,3 +20,4 @@ status server-code server-code
status server-data server-data
status tools tools
status server-code/src/evol evol-hercules
+status music music