Skip to content

Commit

Permalink
Update shellcheck URL per koalaman/shellcheck#1871
Browse files Browse the repository at this point in the history
  • Loading branch information
gwillen committed Sep 2, 2020
1 parent 4e023af commit 799ea15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis/lint_04_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ travis_retry pip install flake8==3.5.0
travis_retry pip install vulture==0.29

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/
SHELLCHECK_URL="https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz"
curl -Ls "${SHELLCHECK_URL}" | tar --xz -xf - --directory /tmp/
export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"

0 comments on commit 799ea15

Please sign in to comment.