diff options
author | Francis Moreau <francis.moro@gmail.com> | 2008-08-11 19:37:46 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-11 16:48:11 -0700 |
commit | e5d3afd78be54fc6e958c7ebad178593fd030441 (patch) | |
tree | ba4d33b8089f8360359bd6a92b1d3be4245fb75a /git-bisect.sh | |
parent | e534735a4cd778ac8172f543869a20894c1022a6 (diff) | |
download | git-e5d3afd78be54fc6e958c7ebad178593fd030441.tar.gz |
git-bisect: fix wrong usage of read(1)
Signed-off-by: Francis Moreau <francis.moro@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 991b2ef37e..6c6c3de54a 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -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... ;; |