2019-06-13 08:59:18 -06:00
|
|
|
language: bash
|
2019-07-16 02:05:05 -06:00
|
|
|
|
|
|
|
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
|