Skip to content

Commit

Permalink
[0.20] lint: fix shellcheck URL in CI install
Browse files Browse the repository at this point in the history
This is causing the tests to fail for backports etc.
  • Loading branch information
fanquake committed Jul 28, 2020
1 parent 58feb9e commit 7ee4769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/lint/04_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ travis_retry pip3 install flake8==3.7.8
travis_retry pip3 install yq

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}"

0 comments on commit 7ee4769

Please sign in to comment.