diff --git a/.github/workflows/CheckMainFile.yml b/.github/workflows/CheckMainFile.yml index 6b0dbbb..04dc63c 100644 --- a/.github/workflows/CheckMainFile.yml +++ b/.github/workflows/CheckMainFile.yml @@ -10,8 +10,9 @@ jobs: 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 [ -n "$(cmp CookieMonster.js CookieMonsterTest.js)" ] then + 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 - else - echo '### SUCCESS: CookieMonster is correctly built! ###' fi