From cd65d6d2a1cce341e69769309334ede2c9b406f6 Mon Sep 17 00:00:00 2001 From: Reza Rahman Date: Mon, 22 Jul 2024 14:53:06 -0400 Subject: [PATCH] Fix error message --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index c2676fa..7017415 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -51,7 +51,7 @@ jobs: MAVEN_EXIT_CODE=${PIPESTATUS[0]} WARN_MESSAGE="Docker support is not possible without choosing a runtime" if ! { [ $MAVEN_EXIT_CODE -eq 0 ] && [ ! -f app/jakartaee-hello-world/Dockerfile ] && grep -q "$WARN_MESSAGE" mvn_output.txt; }; then - echo "Maven build did not fail, or the expected warning was not found. Test Failed." + echo "Maven build failed, a Dockerfile was found, or the expected warning was not found. Test failed." exit 1 fi