Browse Source

Merge branch 'maint'

* maint:
  git-bisect: fix wrong usage of read(1)
maint
Junio C Hamano 17 years ago
parent
commit
7e4ad90872
  1. 3
      git-bisect.sh

3
git-bisect.sh

@ -220,7 +220,8 @@ bisect_next_check() { @@ -220,7 +220,8 @@ bisect_next_check() {
if test -t 0
then
printf >&2 'Are you sure [Y/n]? '
case "$(read yesno)" in [Nn]*) exit 1 ;; esac
read yesno
case "$yesno" in [Nn]*) exit 1 ;; esac
fi
: bisect without good...
;;

Loading…
Cancel
Save