Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  git-bisect: fix wrong usage of read(1)
  • Loading branch information
Junio C Hamano committed Aug 12, 2008
2 parents d777af8 + e5d3afd commit 7e4ad90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion git-bisect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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...
;;
Expand Down

0 comments on commit 7e4ad90

Please sign in to comment.