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 | |
parent | 2dc7f40d4424f66e1324a1600de3fcdd115ab07f (diff) | |
parent | 977e289e0d73ad66883425efbd37eadb7d91fd61 (diff) | |
download | git-36e74ab7efa3db38499d1baa61ab0f8c45a133e8.tar.gz |
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')
-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>" \ |