2018-12-18 02:08:53 +01:00
|
|
|
#!/usr/bin/env bash
|
2018-08-03 02:09:42 +02:00
|
|
|
set -eu
|
|
|
|
|
2024-03-28 23:40:35 +01:00
|
|
|
version=0.10.0
|
2021-05-26 19:07:39 +02:00
|
|
|
arch="$(uname -m)"
|
|
|
|
tarball="shellcheck-v$version.linux.$arch.tar.xz"
|
|
|
|
declare -A sha256=(
|
2024-03-28 23:40:35 +01:00
|
|
|
[aarch64]=324a7e89de8fa2aed0d0c28f3dab59cf84c6d74264022c00c22af665ed1a09bb
|
|
|
|
[x86_64]=6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87
|
2021-05-26 19:07:39 +02:00
|
|
|
)
|
2018-08-03 02:09:42 +02:00
|
|
|
|
2020-10-15 04:55:57 +02:00
|
|
|
check_version() {
|
2022-11-03 18:15:10 +01:00
|
|
|
out="$(shellcheck --version)" && [[ "$out" = *"
|
2018-08-03 02:09:42 +02:00
|
|
|
version: $version
|
2020-04-22 05:09:57 +02:00
|
|
|
"* ]]
|
|
|
|
}
|
|
|
|
|
2022-11-03 18:15:10 +01:00
|
|
|
if ! check_version 2>/dev/null; then
|
2023-05-10 20:32:00 +02:00
|
|
|
set -x
|
2018-08-03 02:09:42 +02:00
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
trap 'rm -r "$tmpdir"' EXIT
|
|
|
|
cd "$tmpdir"
|
2022-11-07 22:50:24 +01:00
|
|
|
curl -fLO --retry 3 "https://github.com/koalaman/shellcheck/releases/download/v$version/$tarball"
|
2021-05-26 19:07:39 +02:00
|
|
|
sha256sum -c <<<"${sha256[$arch]} $tarball"
|
2020-03-31 21:29:25 +02:00
|
|
|
tar -xJf "$tarball" --no-same-owner --strip-components=1 -C /usr/local/bin "shellcheck-v$version/shellcheck"
|
2020-04-22 05:09:57 +02:00
|
|
|
check_version
|
2018-08-03 02:09:42 +02:00
|
|
|
fi
|