diff options
author | Ben Walton <bdwalton@gmail.com> | 2012-10-08 09:08:01 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-10-08 14:37:43 -0700 |
commit | d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb (patch) | |
tree | 5a56ee3c00ad7b9187dc1bdff86ad1e067f785fa /t/t5800-remote-helpers.sh | |
parent | Start preparing for 1.7.12.3 (diff) | |
download | tgif-d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb.tar.xz |
tests: "cp -a" is a GNUism
These tests just want a bit-for-bit identical copy; they do not need
even -H (there is no symbolic link involved) nor -p (there is no
funny permission or ownership issues involved).
Just use "cp -R" instead.
Signed-off-by: Ben Walton <bdwalton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5800-remote-helpers.sh')
-rwxr-xr-x | t/t5800-remote-helpers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh index 5702334510..e7dc668cef 100755 --- a/t/t5800-remote-helpers.sh +++ b/t/t5800-remote-helpers.sh @@ -76,7 +76,7 @@ test_expect_success 'pushing to local repo' ' # git-remote-testgit, but is too slow to leave in for general use. : test_expect_success 'racily pushing to local repo' ' test_when_finished "rm -rf server2 localclone2" && - cp -a server server2 && + cp -R server server2 && git clone "testgit::${PWD}/server2" localclone2 && (cd localclone2 && echo content >>file && |