diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-06-27 14:13:43 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-27 14:13:43 -0700 |
commit | 36e74ab7efa3db38499d1baa61ab0f8c45a133e8 (patch) | |
tree | 44ac28070ee77ce136bb21f7d09248ffb364ff75 /t/t9001-send-email.sh | |
parent | Merge branch 'maint' (diff) | |
parent | t/t9001-send-email.sh: ensure generated script is executed with $SHELL_PATH (diff) | |
download | tgif-36e74ab7efa3db38499d1baa61ab0f8c45a133e8.tar.xz |
Merge branch 'pb/send-email-cccmd-fix'
* pb/send-email-cccmd-fix:
t/t9001-send-email.sh: ensure generated script is executed with $SHELL_PATH
Diffstat (limited to 't/t9001-send-email.sh')
-rwxr-xr-x | t/t9001-send-email.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index fb7d9f3e4a..fb606a9f05 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -152,7 +152,10 @@ test_expect_success 'cccmd works' ' clean_fake_sendmail && cp $patches cccmd.patch && echo cccmd--cccmd@example.com >>cccmd.patch && - echo sed -n s/^cccmd--//p \"\$1\" > cccmd-sed && + { + echo "#!$SHELL_PATH" + echo sed -n -e s/^cccmd--//p \"\$1\" + } > cccmd-sed && chmod +x cccmd-sed && git send-email \ --from="Example <nobody@example.com>" \ |