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:
authorSZEDER Gábor <szeder.dev@gmail.com>2018-07-12 15:37:29 +0300
committerJunio C Hamano <gitster@pobox.com>2018-07-17 19:12:59 +0300
commit95005262844c470652538d53e11cd68d23a0fb62 (patch)
tree11a48068fec731279e97f13a9fa955470d28f0e0 /t/t5608-clone-2gb.sh
parentf9f7c116a3a190e427e97ddfc202e264257e68ec (diff)
t5608: fix broken &&-chain
This was missed by the previous clean-ups. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5608-clone-2gb.sh')
-rwxr-xr-xt/t5608-clone-2gb.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5608-clone-2gb.sh b/t/t5608-clone-2gb.sh
index df822d9a3e..2c6bc07344 100755
--- a/t/t5608-clone-2gb.sh
+++ b/t/t5608-clone-2gb.sh
@@ -23,7 +23,7 @@ test_expect_success CLONE_2GB 'setup' '
printf "blob\nmark :$i\ndata $blobsize\n" &&
#test-tool genrandom $i $blobsize &&
printf "%-${blobsize}s" $i &&
- echo "M 100644 :$i $i" >> commit
+ echo "M 100644 :$i $i" >> commit &&
i=$(($i+1)) ||
echo $? > exit-status
done &&