Update CheckMainFile.yml

This commit is contained in:
DanielNoord
2021-01-31 21:08:40 +01:00
committed by GitHub
parent 5f35ccc76b
commit 59061a5af0

View File

@@ -8,4 +8,10 @@ jobs:
- name: Check if CookieMonster.js is built correctly
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
cmp --silent CookieMonster.js CookieMonsterTest.js && echo '### SUCCESS: CookieMonster is correctly built! ###' || (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)
if [ -n "$(cmp CookieMonster.js CookieMonsterTest.js)" ]
then
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