Skip to content

Commit 5330e6e

Browse files
stefanbellergitster
authored andcommitted
p5310: Fix broken && chain in performance test
Signed-off-by: Stefan Beller <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 351d06d commit 5330e6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/perf/p5310-pack-bitmaps.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ test_expect_success 'create partial bitmap state' '
3939
4040
# now kill off all of the refs and pretend we had
4141
# just the one tip
42-
rm -rf .git/logs .git/refs/* .git/packed-refs
43-
git update-ref HEAD $cutoff
42+
rm -rf .git/logs .git/refs/* .git/packed-refs &&
43+
git update-ref HEAD $cutoff &&
4444
4545
# and then repack, which will leave us with a nice
4646
# big bitmap pack of the "old" history, and all of
4747
# the new history will be loose, as if it had been pushed
4848
# up incrementally and exploded via unpack-objects
49-
git repack -Ad
49+
git repack -Ad &&
5050
5151
# and now restore our original tip, as if the pushes
5252
# had happened

0 commit comments

Comments
 (0)