aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2020-07-28 20:01:22 +0800
committerfanquake <fanquake@gmail.com>2020-08-11 09:02:03 +0800
commitd70f7000212b0050672452b762d92124f402eda6 (patch)
tree26d52286bff9107b5173ea3bbe27ac39b8d9be8a
parentf8f7d91b805928fe5a986e3dff6a9a73ac96e128 (diff)
downloadbitcoin-d70f7000212b0050672452b762d92124f402eda6.tar.xz
lint: fix shellcheck URL in CI install
This is causing the tests to fail for backports etc. Github-Pull: #19612 Rebased-From: 7ee4769cd4be0975254b218134d057c2bb443509
-rwxr-xr-xci/lint/04_install.sh2
1 files changed, 1 insertions, 1 deletions
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}"