diff options
author | fanquake <fanquake@gmail.com> | 2020-07-28 20:01:22 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-07-28 20:13:06 +0800 |
commit | 7ee4769cd4be0975254b218134d057c2bb443509 (patch) | |
tree | 81e321d945369885c9dd7977a3c743c3ecfe888e | |
parent | 58feb9ecb647d41f38e8fdd0beb1665f04f9b4bb (diff) |
[0.20] lint: fix shellcheck URL in CI install
This is causing the tests to fail for backports etc.
-rwxr-xr-x | ci/lint/04_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/lint/04_install.sh b/ci/lint/04_install.sh index 8b2d609504..66be213c95 100755 --- a/ci/lint/04_install.sh +++ b/ci/lint/04_install.sh @@ -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}" |