summaryrefslogtreecommitdiff
path: root/t/t5550-http-fetch.sh
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2010-04-17 20:07:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-04-17 20:55:45 (GMT)
commitd761b2ac0e42416f7fb7752d6ac6cc02c26ea14f (patch)
tree13a9e88f3cce310c4ccca4f6e455572abad351cb /t/t5550-http-fetch.sh
parent03b6aeb27443f117a3d8375f01bc38baeeff65a5 (diff)
downloadgit-d761b2ac0e42416f7fb7752d6ac6cc02c26ea14f.zip
git-d761b2ac0e42416f7fb7752d6ac6cc02c26ea14f.tar.gz
git-d761b2ac0e42416f7fb7752d6ac6cc02c26ea14f.tar.bz2
t5550-http-fetch: Use subshell for repository operations
Change into the server repository's directory using a subshell, so we can return back to the top of the trash directory before doing anything more in the test script. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5550-http-fetch.sh')
-rwxr-xr-xt/t5550-http-fetch.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 8cfce96..78c31c9 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -55,9 +55,10 @@ test_expect_success 'http remote detects correct HEAD' '
test_expect_success 'fetch packed objects' '
cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/repo.git "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
- cd "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
- git --bare repack &&
- git --bare prune-packed &&
+ (cd "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
+ git --bare repack &&
+ git --bare prune-packed
+ ) &&
git clone $HTTPD_URL/dumb/repo_pack.git
'