diff options
author | Ben Walton <bdwalton@gmail.com> | 2012-10-08 10:08:01 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-10-08 23:37:43 +0200 |
commit | d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb (patch) | |
tree | 5a56ee3c00ad7b9187dc1bdff86ad1e067f785fa /t/t5400-send-pack.sh | |
parent | Start preparing for 1.7.12.3 (diff) | |
download | git-d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb.tar.xz git-d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb.zip |
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/t5400-send-pack.sh')
-rwxr-xr-x | t/t5400-send-pack.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh index 250c720c14..418f515ada 100755 --- a/t/t5400-send-pack.sh +++ b/t/t5400-send-pack.sh @@ -159,7 +159,7 @@ test_expect_success 'receive-pack runs auto-gc in remote repo' ' git commit -a -m "Second commit" && git repack ) && - cp -a parent child && + cp -R parent child && ( # Set the child to auto-pack if more than one pack exists cd child && |