Re: [PATCH 18/25] t1301: use modern test_* helpers

2015-03-24 Thread SZEDER Gábor
Quoting Jeff King p...@peff.net: This shortens the code and fixes some -chaining. Signed-off-by: Jeff King p...@peff.net --- t/t1301-shared-repo.sh | 20 +++- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/t/t1301-shared-repo.sh b/t/t1301-shared-repo.sh

Re: [PATCH 18/25] t1301: use modern test_* helpers

2015-03-24 Thread Jeff King
On Wed, Mar 25, 2015 at 12:51:20AM +0100, SZEDER Gábor wrote: @@ -33,7 +32,7 @@ do git init --shared=1 test 1 = $(git config core.sharedrepository) ) -actual=$(ls -l sub/.git/HEAD) +actual=$(ls -l

[PATCH 18/25] t1301: use modern test_* helpers

2015-03-20 Thread Jeff King
This shortens the code and fixes some -chaining. Signed-off-by: Jeff King p...@peff.net --- t/t1301-shared-repo.sh | 20 +++- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/t/t1301-shared-repo.sh b/t/t1301-shared-repo.sh index 7eecfb8..ac10875 100755 ---