diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-05 11:28:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-05 11:28:52 -0700 |
commit | 8fe6177ac640ca36814ad3394d4e86b4ce8e29e3 (patch) | |
tree | 9f602dacf6aea1718f2d325f25300a4ecb518300 | |
parent | git-fast-import.txt: --relative-marks takes no parameter (diff) | |
download | tgif-8fe6177ac640ca36814ad3394d4e86b4ce8e29e3.tar.xz |
t3701: fix here document
A broken here-document was not caught because end of file is taken by
an implicit end of the here document (POSIX does not seem to say it is
an error to lack the delimiter), and everything in the test just turned
into a single "cat into a file".
Noticed-by: Kacper Kornet <draenog@pld-linux.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3701-add-interactive.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/t/t3701-add-interactive.sh b/t/t3701-add-interactive.sh index d6327e7c74..fdcbe2e736 100755 --- a/t/t3701-add-interactive.sh +++ b/t/t3701-add-interactive.sh @@ -82,10 +82,9 @@ EOF ' test_expect_success PERL 'setup fake editor' ' - cat >fake_editor.sh <<EOF - EOF + >fake_editor.sh && chmod a+x fake_editor.sh && - test_set_editor "$(pwd)/fake_editor.sh" && + test_set_editor "$(pwd)/fake_editor.sh" ' test_expect_success PERL 'dummy edit works' ' |