aboutsummaryrefslogtreecommitdiff
path: root/t/t5550-http-fetch.sh
diff options
context:
space:
mode:
authorBen Walton <bdwalton@gmail.com>2012-10-08 09:08:01 +0100
committerJunio C Hamano <gitster@pobox.com>2012-10-08 14:37:43 -0700
commitd4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb (patch)
tree5a56ee3c00ad7b9187dc1bdff86ad1e067f785fa /t/t5550-http-fetch.sh
parent9376c8603fc1f9b5bf663b76705dfee77f71ef82 (diff)
downloadgit-d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb.tar.gz
git-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/t5550-http-fetch.sh')
-rwxr-xr-xt/t5550-http-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 16ef0419e..80d20c876 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -22,7 +22,7 @@ test_expect_success 'setup repository' '
'
test_expect_success 'create http-accessible bare repository with loose objects' '
- cp -a .git "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
+ cp -R .git "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH/repo.git" &&
git config core.bare true &&
mkdir -p hooks &&