Merge branch 'nf/mergetool-prompt'

UI consistency improvements.

* nf/mergetool-prompt:
  difftool/mergetool: make the form of yes/no questions consistent
This commit is contained in:
Junio C Hamano
2016-05-03 14:08:17 -07:00
4 changed files with 5 additions and 5 deletions

View File

@@ -100,7 +100,7 @@ check_unchanged () {
while true
do
echo "$MERGED seems unchanged."
printf "Was the merge successful? [y/n] "
printf "Was the merge successful [y/n]? "
read answer || return 1
case "$answer" in
y*|Y*) return 0 ;;