diff options
author | MatMoul <matmoul@gmail.com> | 2015-08-21 23:09:24 +0200 |
---|---|---|
committer | MatMoul <matmoul@gmail.com> | 2015-08-21 23:09:24 +0200 |
commit | 867c6a1f46bede9b4506121ac846634bb34c7b3b (patch) | |
tree | 03e7ac8116f9a0abf51470cef58dc7e97acd7226 | |
parent | f4d94df926ad353f4f4d4e5c04931fa26dd1cc61 (diff) | |
download | hyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.tar.lz hyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.tar.xz hyperfi-867c6a1f46bede9b4506121ac846634bb34c7b3b.zip |
Don't delete branch by defautl
-rw-r--r-- | makerelease | 4 |
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 |