From d70f7000212b0050672452b762d92124f402eda6 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 28 Jul 2020 20:01:22 +0800 Subject: lint: fix shellcheck URL in CI install This is causing the tests to fail for backports etc. Github-Pull: #19612 Rebased-From: 7ee4769cd4be0975254b218134d057c2bb443509 --- 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 12c3bfce45..993eec0abe 100755 --- a/ci/lint/04_install.sh +++ b/ci/lint/04_install.sh @@ -10,5 +10,5 @@ travis_retry pip3 install codespell==1.15.0 travis_retry pip3 install flake8==3.7.8 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}" -- cgit v1.2.3