diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-10-10 14:57:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-10-10 14:57:09 -0700 |
commit | b7804cf2277af57785ca0a1686bf6571e711a9ca (patch) | |
tree | d0603544da9b0bdc991cf6b4a4d23ab930847303 /t/t5550-http-fetch.sh | |
parent | 4321fe0b5400861b30503a8663669e96dfac0d50 (diff) | |
parent | d4a7ffaae3fa3302a73e00dab01b80c4bfd17cdb (diff) | |
download | git-b7804cf2277af57785ca0a1686bf6571e711a9ca.tar.gz |
Merge branch 'bw/cp-a-is-gnuism'
* bw/cp-a-is-gnuism:
tests: "cp -a" is a GNUism
Diffstat (limited to 't/t5550-http-fetch.sh')
-rwxr-xr-x | t/t5550-http-fetch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh index 16ef0419e9..80d20c876b 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 && |