Refactored ops and whitelist processing into its own file (#1306)

This commit is contained in:
Geoff Bourne
2022-01-26 20:25:52 -06:00
committed by GitHub
parent 8a42dfe232
commit 21602a79e7
10 changed files with 142 additions and 97 deletions
+3 -3
View File
@@ -11,8 +11,8 @@ setupOnlyMinecraftTest(){
cd "$folder"
result=0
if ! logs=$(docker compose run --quiet-pull mc 2>&1); then
echo "${folder} setup FAILED"
if ! logs=$(docker-compose run mc 2>&1); then
echo "${folder} test scenario FAILED"
echo ":::::::::::: LOGS ::::::::::::::::
$logs
::::::::::::::::::::::::::::::::::
@@ -29,7 +29,7 @@ $logs
echo "${folder} PASS"
fi
docker compose down -v --remove-orphans
docker-compose down -v --remove-orphans
cd ..
return $result