2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00

[CI] Update shellcheck URL (#6445)

Otherwise it fails when it doesn't hit cache.

Also update to 0.7.1.
This commit is contained in:
Frans de Jonge 2020-07-28 20:23:55 +02:00 committed by GitHub
parent 072d960b68
commit 9b8996cd02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,8 +49,8 @@ else
fi
#install our own updated shellcheck
SHELLCHECK_VERSION="v0.7.0"
SHELLCHECK_URL="https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION?}.linux.x86_64.tar.xz"
SHELLCHECK_VERSION="v0.7.1"
SHELLCHECK_URL="https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION?}/shellcheck-${SHELLCHECK_VERSION?}.linux.x86_64.tar.xz"
if ! command -v shellcheck; then
curl -sSL "${SHELLCHECK_URL}" | tar --exclude 'SHA256SUMS' --strip-components=1 -C "${HOME}/bin" -xJf -
chmod +x "${HOME}/bin/shellcheck"