From ef22b394c9b87b71c251258dd1fafd52a54b3a3f Mon Sep 17 00:00:00 2001 From: Kekoa Kaaikala Date: Mon, 29 Aug 2022 14:50:33 +0000 Subject: [PATCH] Project: Only shellcheck .sh and .bash files --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 887963d5a..866a47d79 100644 --- a/.travis.yml +++ b/.travis.yml @@ -90,7 +90,7 @@ jobs: - eslint ./src --max-warnings $JS_WARNINGS_AMOUNT_UPPER_LIMIT # test for max warnings # check shell scripts - - for file in $(find $TRAVIS_BUILD_DIR -type f); do shellcheck --format=gcc $file; done; + - for file in $(find $TRAVIS_BUILD_DIR -type f -name "*.sh" -or -name "*.bash"); do shellcheck --format=gcc $file; done; # build documentation - cd $TRAVIS_BUILD_DIR/docs