aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--makerelease19
1 files changed, 13 insertions, 6 deletions
diff --git a/makerelease b/makerelease
index 082379f..8ec7e0f 100644
--- a/makerelease
+++ b/makerelease
@@ -54,9 +54,21 @@ if [ ! "$branch" = "master" ]; then
esac
fi
+read -p "Push release ? (Y/n)" choice
+case "$choice" in
+ n|N ) exit 1;;
+ exit 1
+ ;;
+esac
+
+git checkout master
+echo "Push release..."
+git push
+
+
read -p "Publish to server ? (Y/n)" choice
case "$choice" in
- n|N )
+ n|N ) exit 1;;
exit 1
;;
esac
@@ -70,11 +82,6 @@ git commit -a -m "New Release : $version"
echo "Push index.html..."
git push
-git checkout master
-echo "Push release..."
-git push
-
-
#Sourceforge :
targetpath=.build/$version