Don't delete branch by defautl

This commit is contained in:
MatMoul 2015-08-21 23:13:39 +02:00
parent af1ba4f95e
commit 96a5d45950

View file

@ -50,9 +50,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