Fix the broken && chain
Reported-By: Eric Sunshine <[email protected]>
Signed-off-by: Torsten Bögershausen <[email protected]>
---
t/t0026-eol-config.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/t/t0026-eol-config.sh b/t/t0026-eol-config.sh
index 43a580a..4806969 100755
--- a/t/t0026-eol-config.sh
+++ b/t/t0026-eol-config.sh
@@ -84,9 +84,9 @@ test_expect_success NATIVE_CRLF 'eol native is crlf' '
rm -rf native_eol && mkdir native_eol &&
( cd native_eol &&
- printf "*.txt text\n" > .gitattributes
- printf "one\r\ntwo\r\nthree\r\n" > filedos.txt
- printf "one\ntwo\nthree\n" > fileunix.txt
+ printf "*.txt text\n" > .gitattributes &&
+ printf "one\r\ntwo\r\nthree\r\n" > filedos.txt &&
+ printf "one\ntwo\nthree\n" > fileunix.txt &&
git init &&
git config core.autocrlf false &&
git config core.eol native &&
--
2.1.0.rc2.210.g636bceb
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html