Don't delete branch by defautl

This commit is contained in:
MatMoul 2015-08-21 23:14:12 +02:00
parent 095622ec06
commit 53d5ac6f21

View file

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