Update .travis.yml

This commit is contained in:
2019-05-16 17:48:36 +02:00
committed by GitHub
parent b421c1cb97
commit 01030cd385

View File

@ -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;"