commit 893e55e8925de4a5581300ecb25fe1ea8eb1c409 parent 4244f370819088bbb724f43fd39cce2124be919e Author: Dylan Araps <dylan.araps@gmail.com> Date: Tue, 16 Jul 2019 11:05:05 +0300 docs: update Diffstat:
M | .travis.yml | | | 10 | +++++++++- |
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml @@ -1,2 +1,10 @@ language: bash -script: shellcheck kiss + +install: + # Install a custom version of shellcheck instead of Travis CI's default + - scversion=latest + - wget "https://storage.googleapis.com/shellcheck/shellcheck-${scversion}.linux.x86_64.tar.xz" + - tar --xz -xvf "shellcheck-${scversion}.linux.x86_64.tar.xz" + - shellcheck() { "shellcheck-${scversion}/shellcheck" "$@"; } + +script: shellcheck kiss