diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-17 15:58:15 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-17 15:58:15 -0800 |
commit | 4fa088209c81845e73756a4173a8c954e25958d2 (patch) | |
tree | 7590d45bb9b42df97f3bd2e8e833aa4561cf1028 /t/t4031-diff-rewrite-binary.sh | |
parent | Merge branch 'sr/gfi-options' (diff) | |
parent | t4030, t4031: work around bogus MSYS bash path conversion (diff) | |
download | tgif-4fa088209c81845e73756a4173a8c954e25958d2.tar.xz |
Merge branch 'jk/run-command-use-shell'
* jk/run-command-use-shell:
t4030, t4031: work around bogus MSYS bash path conversion
diff: run external diff helper with shell
textconv: use shell to run helper
editor: use run_command's shell feature
run-command: optimize out useless shell calls
run-command: convert simple callsites to use_shell
t0021: use $SHELL_PATH for the filter script
run-command: add "use shell" option
Diffstat (limited to 't/t4031-diff-rewrite-binary.sh')
-rwxr-xr-x | t/t4031-diff-rewrite-binary.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4031-diff-rewrite-binary.sh b/t/t4031-diff-rewrite-binary.sh index a894c60622..7e7b307a24 100755 --- a/t/t4031-diff-rewrite-binary.sh +++ b/t/t4031-diff-rewrite-binary.sh @@ -54,7 +54,7 @@ chmod +x dump test_expect_success 'setup textconv' ' echo file diff=foo >.gitattributes && - git config diff.foo.textconv "$PWD"/dump + git config diff.foo.textconv "\"$(pwd)\""/dump ' test_expect_success 'rewrite diff respects textconv' ' |