From: SZEDER Gábor <szeder@xxxxxxxxxx> Also move the shebang line into the here document. Signed-off-by: SZEDER Gábor <szeder@xxxxxxxxxx> --- t/t9903-bash-prompt.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/t/t9903-bash-prompt.sh b/t/t9903-bash-prompt.sh index 7c7f8b97..b0af5d5f 100755 --- a/t/t9903-bash-prompt.sh +++ b/t/t9903-bash-prompt.sh @@ -248,12 +248,12 @@ test_expect_success 'prompt - inside bare repository' ' test_expect_success 'prompt - interactive rebase' ' printf " (b1|REBASE-i 2/3)" >expected - echo "#!$SHELL_PATH" >fake_editor.sh && - cat >>fake_editor.sh <<\EOF && -echo "exec echo" >"$1" -echo "edit $(git log -1 --format="%h")" >>"$1" -echo "exec echo" >>"$1" -EOF + cat >fake_editor.sh <<-EOF && + #!$SHELL_PATH + echo "exec echo" >"\$1" + echo "edit \$(git log -1 --format="%h")" >>"\$1" + echo "exec echo" >>"\$1" + EOF test_when_finished "rm -f fake_editor.sh" && chmod a+x fake_editor.sh && test_set_editor "$TRASH_DIRECTORY/fake_editor.sh" && -- 1.8.3.1.487.g8f4672d -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html