Don't delete branch by defautl

This commit is contained in:
MatMoul 2015-08-21 23:09:24 +02:00
parent f4d94df926
commit 867c6a1f46

View file

@ -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