diff --git a/.travis.yml b/.travis.yml index 385229191..24af341a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,6 @@ addons: - shellcheck script: - - #- bash tests/tests_jc2server.sh - #- bash tests/tests_ts3server.sh + - bash tests/tests_jc2server.sh + - bash tests/tests_ts3server.sh - bash tests/tests_shellcheck.sh \ No newline at end of file diff --git a/tests/tests_shellcheck.sh b/tests/tests_shellcheck.sh index ed916bb21..9759825d2 100644 --- a/tests/tests_shellcheck.sh +++ b/tests/tests_shellcheck.sh @@ -7,5 +7,10 @@ # Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki # Website: https://gameservermanagers.com + +echo "START Shellcheck" +echo "=================================" find . -type f -name "*.sh" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; find . -type f -name "*.cfg" -not -path "./shunit2-2.1.6/*" -exec shellcheck --shell=bash --exclude=SC2154,SC2034 {} \; +echo "=================================" +echo "END Shellcheck" \ No newline at end of file