t7004: fix embedded single-quotes
[gitweb.git] / t / t3010-ls-files-killed-modified.sh
index 6d3b828a951e4c03b886087393269dbe4d5c5c8f..62fce103f9cc2509c642fd5c900dc0b60b1710d9 100755 (executable)
@@ -62,7 +62,7 @@ test_expect_success 'git update-index --add to add various paths.' '
                        cd submod$i && git commit --allow-empty -m "empty $i"
                ) || break
        done &&
-       git update-index --add submod[12]
+       git update-index --add submod[12] &&
        (
                cd submod1 &&
                git commit --allow-empty -m "empty 1 (updated)"
@@ -99,12 +99,12 @@ test_expect_success 'git ls-files -k to show killed files.' '
 '
 
 test_expect_success 'git ls-files -k output (w/o icase)' '
-       git ls-files -k >.output
+       git ls-files -k >.output &&
        test_cmp .expected .output
 '
 
 test_expect_success 'git ls-files -k output (w/ icase)' '
-       git -c core.ignorecase=true ls-files -k >.output
+       git -c core.ignorecase=true ls-files -k >.output &&
        test_cmp .expected .output
 '