From 7ee4769cd4be0975254b218134d057c2bb443509 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 28 Jul 2020 20:01:22 +0800 Subject: [PATCH] [0.20] lint: fix shellcheck URL in CI install This is causing the tests to fail for backports etc. --- ci/lint/04_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}"