Lars Hjemli wrote: > +test_expect_success 'status should only print one line' ' > + lines=$(git-submodule status | wc -l) && is missing. > + test "$lines" = "1" Please don't put output of wc in quotes because some versions of wc emit padding: test $lines = 1 (without the quotes around 1 - like in other test scripts). -- Hannes - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html