Skip to content

Commit 32b624b

Browse files
committed
Merge #905: Update shellcheck URL
799ea15 Update shellcheck URL per koalaman/shellcheck#1871 (Glenn Willen) Pull request description: Update shellcheck URL per per koalaman/shellcheck#1871 to unbreak CI. Tree-SHA512: ced455990d11a4bfc6f2587398cef729a73ad212b76c8d6b856922ddbb81beb15a39f09adde9d4ed0bcb30d9bf8cec3e1bd94db356327e665ef1d533e88ff0c4
2 parents 4e023af + 799ea15 commit 32b624b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis/lint_04_install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ travis_retry pip install flake8==3.5.0
1111
travis_retry pip install vulture==0.29
1212

1313
SHELLCHECK_VERSION=v0.6.0
14-
curl -s "https://storage.googleapis.com/shellcheck/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
14+
SHELLCHECK_URL="https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz"
15+
curl -Ls "${SHELLCHECK_URL}" | tar --xz -xf - --directory /tmp/
1516
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"

0 commit comments

Comments
 (0)