aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatMoul <matmoul@gmail.com>2015-08-21 23:09:24 +0200
committerMatMoul <matmoul@gmail.com>2015-08-21 23:09:24 +0200
commit867c6a1f46bede9b4506121ac846634bb34c7b3b (patch)
tree03e7ac8116f9a0abf51470cef58dc7e97acd7226
parentf4d94df926ad353f4f4d4e5c04931fa26dd1cc61 (diff)
downloadhyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.tar.lz
hyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.tar.xz
hyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.zip
Don't delete branch by defautl
-rw-r--r--makerelease4
1 files changed, 2 insertions, 2 deletions
diff --git a/makerelease b/makerelease
index 99945e3..fc97587 100644
--- a/makerelease
+++ b/makerelease
@@ -54,9 +54,9 @@ if [ ! "$branch" = "master" ]; then
git checkout master
git merge $branch
- read -p "Delete branch $branch ? (Y/n)" choice
+ read -p "Delete branch $branch ? (y/N)" choice
case "$choice" in
- y|Y|'' )
+ y|Y )
git branch -D $branch
;;
esac