Skip to content

Commit 64fe6fc

Browse files
committed
Merge branch 'sb/p5310-and-chain'
Code clean-up. * sb/p5310-and-chain: p5310: Fix broken && chain in performance test
2 parents e12fc40 + 5330e6e commit 64fe6fc

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)