diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-08-10 11:32:55 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-08-15 11:11:45 -0400 |
commit | fafe78f6aedfc0ac865379c412a87670b6211021 (patch) | |
tree | a0a9b63b6fc3db34075175f160481cba5409fbde /ci/lint/04_install.sh | |
parent | 8bd5e0af9983c6892d4076881d634cc524d643fd (diff) |
ci: Rename .travis/ to ./ci/
Diffstat (limited to 'ci/lint/04_install.sh')
-rwxr-xr-x | ci/lint/04_install.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ci/lint/04_install.sh b/ci/lint/04_install.sh new file mode 100755 index 0000000000..20bff368a5 --- /dev/null +++ b/ci/lint/04_install.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# +# Copyright (c) 2018 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +export LC_ALL=C + +travis_retry pip3 install codespell==1.15.0 +travis_retry pip3 install flake8==3.5.0 +travis_retry pip3 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}" |