File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ ${CI_RETRY_EXE} pip3 install vulture==2.3
17
17
${CI_RETRY_EXE} pip3 install yq
18
18
${CI_RETRY_EXE} pip3 install mypy==0.781
19
19
20
- SHELLCHECK_VERSION=v0.7.1
20
+ SHELLCHECK_VERSION=v0.7.2
21
21
curl -sL " https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION} /shellcheck-${SHELLCHECK_VERSION} .linux.x86_64.tar.xz" | tar --xz -xf - --directory /tmp/
22
22
export PATH=" /tmp/shellcheck-${SHELLCHECK_VERSION} :${PATH} "
Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ Use the `-v` option for verbose output.
308
308
|-----------|:----------:|:-------------------------------------------:|--------------
309
309
| [ ` lint-python.sh ` ] ( lint/lint-python.sh ) | [ flake8] ( https://gitlab.com/pycqa/flake8 ) | [ 3.8.3] ( https://github.com/bitcoin/bitcoin/pull/19348 ) | ` pip3 install flake8==3.8.3 `
310
310
| [ ` lint-python.sh ` ] ( lint/lint-python.sh ) | [ mypy] ( https://github.com/python/mypy ) | [ 0.781] ( https://github.com/bitcoin/bitcoin/pull/19348 ) | ` pip3 install mypy==0.781 `
311
- | [ ` lint-shell.sh ` ] ( lint/lint-shell.sh ) | [ ShellCheck] ( https://github.com/koalaman/shellcheck ) | [ 0.7.1 ] ( https://github.com/bitcoin/bitcoin/pull/19348 ) | [ details...] ( https://github.com/koalaman/shellcheck#installing )
311
+ | [ ` lint-shell.sh ` ] ( lint/lint-shell.sh ) | [ ShellCheck] ( https://github.com/koalaman/shellcheck ) | [ 0.7.2 ] ( https://github.com/bitcoin/bitcoin/pull/21749 ) | [ details...] ( https://github.com/koalaman/shellcheck#installing )
312
312
| [ ` lint-shell.sh ` ] ( lint/lint-shell.sh ) | [ yq] ( https://github.com/kislyuk/yq ) | default | ` pip3 install yq `
313
313
| [ ` lint-spelling.sh ` ] ( lint/lint-spelling.sh ) | [ codespell] ( https://github.com/codespell-project/codespell ) | [ 2.0.0] ( https://github.com/bitcoin/bitcoin/pull/20817 ) | ` pip3 install codespell==2.0.0 `
314
314
Original file line number Diff line number Diff line change 12
12
# one. Any remaining diff signals an error.
13
13
14
14
export LC_ALL=C
15
- if test -z " $1 " ; then
15
+ if test -z $1 ; then
16
16
echo " Usage: $0 <commit>..."
17
17
exit 1
18
18
fi
You can’t perform that action at this time.
0 commit comments