commit 0a26275fe182db5175d613f1525905f45d37a4bf from: Stefan Sperling date: Mon Jan 03 11:11:06 2022 UTC use 'gotadmin pack' instead of 'git repack' if testing with GOT_TEST_PACK commit - c0df59665de91324eeab1808c6c4e41343f21789 commit + 0a26275fe182db5175d613f1525905f45d37a4bf blob - c0b2732f4fd9fd4cc10cc8964d7e255b1341f13b blob + bf70684101a1fc9ac01f964e40f97643aa2f3015 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -46,7 +46,7 @@ maybe_pack_repo() { local repo="$1" if [ -n "$GOT_TEST_PACK" ]; then - (cd $repo && git repack -a -q) + (cd $repo && gotadmin pack -a > /dev/null) fi }