Update .travis.yml

This commit is contained in:
Torma Kristóf 2019-05-16 17:48:36 +02:00 committed by GitHub
parent b421c1cb97
commit 01030cd385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,4 +6,4 @@ addons:
update: true update: true
packages: shellcheck 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;"