Handle packwiz bootstrap installer already being present (#1595)

This commit is contained in:
Geoff Bourne
2022-07-11 22:27:07 -05:00
committed by GitHub
parent 51f1a08f6e
commit e3a29180fd
8 changed files with 71 additions and 19 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ setupOnlyMinecraftTest(){
fi
start=$(date +%s)
if ! logs=$(docker-compose run mc 2>&1); then
if ! logs=$(docker compose run mc 2>&1); then
outputContainerLog "$logs"
result=1
elif [ -f verify.sh ]; then
@@ -57,7 +57,7 @@ setupOnlyMinecraftTest(){
echo "${folder} PASSED in $(delta start)"
fi
docker-compose down -v --remove-orphans > /dev/null
docker compose down -v --remove-orphans >& /dev/null
cd ..
return $result