diff --git a/.travis.yml b/.travis.yml index 75ade6d..a734862 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,4 @@ addons: update: true packages: shellcheck -script: "find $HOME -type f -exec \"shellcheck\" \"--format=gcc\" {} ;" +script: "for file in $(find $HOME -type f); do shellcheck --format=gcc $file; done;"