[0.20] lint: fix shellcheck URL in CI install

This is causing the tests to fail for backports etc.
This commit is contained in:
fanquake 2020-07-28 20:01:22 +08:00
parent 58feb9ecb6
commit 7ee4769cd4
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -11,5 +11,5 @@ travis_retry pip3 install flake8==3.7.8
travis_retry pip3 install yq
SHELLCHECK_VERSION=v0.6.0
curl -s "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"