aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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