Fix started message

This commit is contained in:
Syer10
2024-03-28 21:06:48 -04:00
parent 7c6a00ed02
commit e9c5c95905

View File

@@ -40,7 +40,7 @@ jobs:
# Wait for 'Server Started' message
while true; do
if grep -q "Server started successfully" <(tail -n 5 output.log); then
if grep -q "Javalin started" <(tail -n 5 output.log); then
break
fi
sleep 1