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>
This commit is contained in:
committed by
Junio C Hamano
parent
9376c8603f
commit
d4a7ffaae3
@ -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 &&
|
||||
|
||||
Reference in New Issue
Block a user