travis: Use latest shellcheck

This commit is contained in:
Dylan Araps 2018-06-03 11:19:11 +10:00
parent 041c021c97
commit f51de7f139
1 changed files with 1 additions and 1 deletions

View File

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