aboutsummaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-01-16 15:09:36 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2019-01-16 15:47:56 +0100
commit638e53b472c7f953148f3d24cdbf6ab373fb3fa5 (patch)
treed90d82d00630da1d15a519cfa83753fca09d1fb0 /.travis
parent19c60ca4975d5cf3847d5ba43c65eb02462c2d0f (diff)
downloadbitcoin-638e53b472c7f953148f3d24cdbf6ab373fb3fa5.tar.xz
Pin shellcheck version to v0.6.0
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/lint_04_install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis/lint_04_install.sh b/.travis/lint_04_install.sh
index 723e7c56f1..9a22773e57 100755
--- a/.travis/lint_04_install.sh
+++ b/.travis/lint_04_install.sh
@@ -9,3 +9,7 @@ export LC_ALL=C
travis_retry pip install codespell==1.13.0
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/
+export PATH="/tmp/shellcheck-${SHELLCHECK_VERSION}:${PATH}"