Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-09-07 05:49:10 +0400
committerJunio C Hamano <gitster@pobox.com>2010-09-10 02:58:45 +0400
commit76bbcd4382797dedb72a50387111a65d88230fa9 (patch)
tree37b33b176565f49c0bccd867433639a4cf565e1a /t/t2105-update-index-gitfile.sh
parentdbedf8bf42f63847b096aeb7d6b96cf3a2233b7a (diff)
t2105 (gitfile): add missing &&
Make sure early failures are not masked by later successes. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Acked-by: Brad King <brad.king@kitware.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t2105-update-index-gitfile.sh')
-rwxr-xr-xt/t2105-update-index-gitfile.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2105-update-index-gitfile.sh b/t/t2105-update-index-gitfile.sh
index 641607d89a..a7f3d47aec 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)
'