diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:26:43 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:26:43 -0800 |
commit | 4762c7b42a1fe701670b4564300abc6c13c4ec00 (patch) | |
tree | ed8f38b976fcc9283f6d831774a60519aa57cd57 /t | |
parent | Merge branch 'jc/refer-to-t-readme-from-submitting-patches' (diff) | |
parent | t5000 on Windows: do not mistake "sh.exe" as "sh" (diff) | |
download | tgif-4762c7b42a1fe701670b4564300abc6c13c4ec00.tar.xz |
Merge branch 'js/t5000-dont-copy-bin-sh'
* js/t5000-dont-copy-bin-sh:
t5000 on Windows: do not mistake "sh.exe" as "sh"
Diffstat (limited to 't')
-rwxr-xr-x | t/t5000-tar-tree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index d01bbdc968..4b68bbafbe 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -101,7 +101,7 @@ test_expect_success \ ten=0123456789 && hundred=$ten$ten$ten$ten$ten$ten$ten$ten$ten$ten && echo long filename >a/four$hundred && mkdir a/bin && - cp /bin/sh a/bin && + test-genrandom "frotz" 500000 >a/bin/sh && printf "A\$Format:%s\$O" "$SUBSTFORMAT" >a/substfile1 && printf "A not substituted O" >a/substfile2 && if test_have_prereq SYMLINKS; then |