travis: Use latest shellcheck
This commit is contained in:
parent
ee9939a1dd
commit
f7f47799ea
|
@ -9,6 +9,14 @@ before_install:
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install screenresolution; fi
|
||||||
|
|
||||||
|
install:
|
||||||
|
# Install a custom version of shellcheck instead of Travis CI's default
|
||||||
|
- 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" "$@"; }
|
||||||
|
- shellcheck --version
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- time ./neofetch --travis -v
|
- time ./neofetch --travis -v
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch; fi
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch; fi
|
||||||
|
|
Reference in New Issue