Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t0001-init: fix a file name
author
Johannes Sixt
<j6t@kdbg.org>
Sun, 9 Aug 2009 15:38:04 +0000
(17:38 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 9 Aug 2009 17:41:37 +0000
(10:41 -0700)
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 <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t0001-init.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
ea5b1f6
)
diff --git
a/t/t0001-init.sh
b/t/t0001-init.sh
index 49caa29061a1adb42595aecdb0aed48ff1654883..07e011d9efa0ab1ea596a1dfb146e2cda614e45e 100755
(executable)
--- 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" ls
ab
.out &&
ls -ld newdir/a/b/c > lsc.out &&
! grep -v "^drwxrw[sx]---" lsc.out
)