summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Johannes Sixt <j6t@kdbg.org>2009-03-25 12:48:30 +0100
committerLibravatar Johannes Sixt <j6t@kdbg.org>2009-03-25 21:25:53 +0100
commit80f0e53d6bdde5d9be016e5cfbb5ff7c0257a00e (patch)
tree28d6f5bc7b94df04ba84a91e111c28fffbcbbbfa
parentt0060: fix whitespace in "wc -c" invocation (diff)
downloadtgif-80f0e53d6bdde5d9be016e5cfbb5ff7c0257a00e.tar.xz
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 <j6t@kdbg.org>
-rwxr-xr-xt/t7005-editor.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t7005-editor.sh b/t/t7005-editor.sh
index 2f8404afbb..e83bc8fd89 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