diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-02 13:18:37 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-02 13:18:37 -0700 |
commit | 8e969454e1588e506df20f552aa8622b6517ea20 (patch) | |
tree | a345924eb07a555121bbd5dcbae39557396fcc2b /t/t6030-bisect-porcelain.sh | |
parent | Merge branch 'va/p4-branch-import-test-update' (diff) | |
parent | t6030: use $SHELL_PATH to invoke user's preferred shell instead of bare sh (diff) | |
download | tgif-8e969454e1588e506df20f552aa8622b6517ea20.tar.xz |
Merge branch 'bc/bisect-test-use-shell-path'
* bc/bisect-test-use-shell-path:
t6030: use $SHELL_PATH to invoke user's preferred shell instead of bare sh
Diffstat (limited to 't/t6030-bisect-porcelain.sh')
-rwxr-xr-x | t/t6030-bisect-porcelain.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh index 62125eca81..c6f1f9f8ab 100755 --- a/t/t6030-bisect-porcelain.sh +++ b/t/t6030-bisect-porcelain.sh @@ -732,7 +732,7 @@ test_expect_success 'bisect: demonstrate identification of damage boundary' " git bisect reset && git checkout broken && git bisect start broken master --no-checkout && - git bisect run sh -c ' + git bisect run \"\$SHELL_PATH\" -c ' GOOD=\$(git for-each-ref \"--format=%(objectname)\" refs/bisect/good-*) && git rev-list --objects BISECT_HEAD --not \$GOOD >tmp.\$\$ && git pack-objects --stdout >/dev/null < tmp.\$\$ |