This repository was archived by the owner on Nov 9, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ test_expect_success 'fetch via rsync' '
301
301
mkdir rsynced &&
302
302
(cd rsynced &&
303
303
git init --bare &&
304
- git fetch "rsync:$(pwd)/ ../.git" master:refs/heads/master &&
304
+ git fetch "rsync:../.git" master:refs/heads/master &&
305
305
git gc --prune &&
306
306
test $(git rev-parse master) = $(cd .. && git rev-parse master) &&
307
307
git fsck --full)
@@ -312,7 +312,7 @@ test_expect_success 'push via rsync' '
312
312
(cd rsynced2 &&
313
313
git init) &&
314
314
(cd rsynced &&
315
- git push "rsync:$(pwd)/ ../rsynced2/.git" master) &&
315
+ git push "rsync:../rsynced2/.git" master) &&
316
316
(cd rsynced2 &&
317
317
git gc --prune &&
318
318
test $(git rev-parse master) = $(cd .. && git rev-parse master) &&
@@ -323,7 +323,7 @@ test_expect_success 'push via rsync' '
323
323
mkdir rsynced3 &&
324
324
(cd rsynced3 &&
325
325
git init) &&
326
- git push --all "rsync:$(pwd)/ rsynced3/.git" &&
326
+ git push --all "rsync:rsynced3/.git" &&
327
327
(cd rsynced3 &&
328
328
test $(git rev-parse master) = $(cd .. && git rev-parse master) &&
329
329
git fsck --full)
You can’t perform that action at this time.
0 commit comments