Browse Source

travis: Use latest shellcheck

Dylan Araps 7 years ago
parent
commit
f51de7f139
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

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