From: Jonathan Nieder Date: Tue, 7 Sep 2010 01:49:10 +0000 (-0500) Subject: t2105 (gitfile): add missing && X-Git-Tag: v1.7.3-rc2~3^2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=76bbcd4382797dedb72a50387111a65d88230fa9;p=git.git t2105 (gitfile): add missing && Make sure early failures are not masked by later successes. Signed-off-by: Jonathan Nieder Acked-by: Brad King Signed-off-by: Junio C Hamano --- diff --git a/t/t2105-update-index-gitfile.sh b/t/t2105-update-index-gitfile.sh index 641607d89..a7f3d47ae 100755 --- a/t/t2105-update-index-gitfile.sh +++ b/t/t2105-update-index-gitfile.sh @@ -13,7 +13,7 @@ test_expect_success 'submodule with absolute .git file' ' (cd sub1 && git init && REAL="$(pwd)/.real" && - mv .git "$REAL" + mv .git "$REAL" && echo "gitdir: $REAL" >.git && test_commit first) '