From e2afebe1c80c3d43a598daca0c643f7a80810327 Mon Sep 17 00:00:00 2001 From: DanielNoord Date: Sun, 31 Jan 2021 21:31:03 +0100 Subject: [PATCH] Update CheckMainFile.yml --- .github/workflows/CheckMainFile.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CheckMainFile.yml b/.github/workflows/CheckMainFile.yml index f391cef..f1dff26 100644 --- a/.github/workflows/CheckMainFile.yml +++ b/.github/workflows/CheckMainFile.yml @@ -9,8 +9,8 @@ jobs: run: | cat ./src/Header.js ./src/Cache.js ./src/Config.js ./src/Data.js ./src/Disp.js ./src/Main.js ./src/Sim.js ./src/Footer.js > CookieMonsterTest.js if cmp -s CookieMonster.js CookieMonsterTest.js; then - echo '### SUCCESS: CookieMonster is correctly built! ###' + echo '### SUCCESS: CookieMonster is correctly built! ###' else - echo ### WARNING: CookieMonster.js does not seem to be correct. Have you compiled the source files into the final file using either of the combine files? ### - exit 1 + echo '### WARNING: CookieMonster.js does not seem to be correct. Have you compiled the source files into the final file using either of the combine files? ###' + exit 1 fi