Skip to content

Commit

Permalink
Merge #919: [0.18 backport] Backport #905: Update shellcheck URL per h…
Browse files Browse the repository at this point in the history
…ttps://github.com/koalaman/shellcheck/issu…

1ec4a81 Update shellcheck URL per koalaman/shellcheck#1871 (Glenn Willen)

Pull request description:

Tree-SHA512: b154f2a8fc11df6915d4638a537f7443f071b36cf0864c63b54791f0556e551957131d837e311c4a43d7d9a25704caab362a0ef03cc1d3d94f885081fce5bb5a
  • Loading branch information
stevenroose committed Oct 6, 2020
2 parents 8b585d8 + 1ec4a81 commit 4ae7d7a
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 4ae7d7a

Please sign in to comment.