summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgit/push.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/push.sh b/git/push.sh
index 83fadd1..ab447b8 100755
--- a/git/push.sh
+++ b/git/push.sh
@@ -10,6 +10,6 @@ wd=`pwd`
for i in $all_modules; do
echo "push $i" 1>&2
cd $i
- git push --tags origin master
+ git push --tags origin $*
cd $wd
done