Skip to content

Commit d70f700

Browse files
committed
lint: fix shellcheck URL in CI install
This is causing the tests to fail for backports etc. Github-Pull: #19612 Rebased-From: 7ee4769
1 parent f8f7d91 commit d70f700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/lint/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ travis_retry pip3 install codespell==1.15.0
1010
travis_retry pip3 install flake8==3.7.8
1111

1212
SHELLCHECK_VERSION=v0.6.0
13-
curl -s "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
13+
curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
1414
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"

0 commit comments

Comments
 (0)