From 7d53a07a2833116cdf52ca256375c6b37f4d6b46 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Sun, 9 Aug 2009 17:38:04 +0200 Subject: [PATCH] t0001-init: fix a file name Without this change, grep fails because it does not find the file instead of because it does not find the text in the file. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- t/t0001-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t0001-init.sh b/t/t0001-init.sh index 49caa29061..07e011d9ef 100755 --- a/t/t0001-init.sh +++ b/t/t0001-init.sh @@ -251,7 +251,7 @@ test_expect_success 'init creates a new deep directory' ' git init --bare --shared=0660 newdir/a/b/c && test -d newdir/a/b/c/refs && ls -ld newdir/a newdir/a/b > lsab.out && - ! grep -v "^drwxrw[sx]r-x" ls.out && + ! grep -v "^drwxrw[sx]r-x" lsab.out && ls -ld newdir/a/b/c > lsc.out && ! grep -v "^drwxrw[sx]---" lsc.out ) -- 2.11.4.GIT