From 6dee7f1ebde3399a0c9978939c8d47afb2449a36 Mon Sep 17 00:00:00 2001 From: Rouven Himmelstein Date: Wed, 24 Jan 2024 13:07:09 +0100 Subject: [PATCH] fix: test image string --- .github/workflows/test-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-image.sh b/.github/workflows/test-image.sh index 39e64c6..9de15e9 100755 --- a/.github/workflows/test-image.sh +++ b/.github/workflows/test-image.sh @@ -8,7 +8,7 @@ docker-compose up -d echo "🔍 Checking for the desired string in the logs..." while true; do # Check if the desired string is in the logs - if docker-compose logs | grep -q "Dedicated server loaded"; then + if docker-compose logs | grep -q "Please restart the server"; then echo "✅ Dedicated server started successfully" break fi