From: Johannes Sixt Date: Wed, 25 Mar 2009 11:48:30 +0000 (+0100) Subject: t7005-editor: Use $SHELL_PATH in the editor scripts X-Git-Tag: v1.6.3-rc0~93^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=80f0e53d6bdde5d9be016e5cfbb5ff7c0257a00e;p=git.git t7005-editor: Use $SHELL_PATH in the editor scripts The test sets up various shell scripts and uses them as commit message editors. On Windows, we need a shebang line in order to recognize the files as executable shell scripts. This adds it. Signed-off-by: Johannes Sixt --- diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh index 2f8404afb..e83bc8fd8 100755 --- a/t/t7005-editor.sh +++ b/t/t7005-editor.sh @@ -7,6 +7,7 @@ test_description='GIT_EDITOR, core.editor, and stuff' for i in GIT_EDITOR core_editor EDITOR VISUAL vi do cat >e-$i.sh <<-EOF + #!$SHELL_PATH echo "Edited by $i" >"\$1" EOF chmod +x e-$i.sh