From f51de7f1396b67aaa14a18fea58890bbd1f7b9d8 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 3 Jun 2018 11:19:11 +1000 Subject: [PATCH] travis: Use latest shellcheck --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 98ce0308..afc2571b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ before_install: install: # Install a custom version of shellcheck instead of Travis CI's default - - scversion="0.5.0" # or "v0.4.7", or "latest" + - scversion="latest" # or "v0.4.7", or "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" "$@"; }