2018-12-18 02:08:53 +01:00
|
|
|
#!/usr/bin/env bash
|
2018-08-03 02:09:42 +02:00
|
|
|
set -eu
|
|
|
|
|
2021-06-09 00:59:05 +02:00
|
|
|
version=0.7.2
|
2021-05-26 19:07:39 +02:00
|
|
|
arch="$(uname -m)"
|
|
|
|
tarball="shellcheck-v$version.linux.$arch.tar.xz"
|
|
|
|
declare -A sha256=(
|
2021-06-09 00:59:05 +02:00
|
|
|
[aarch64]=a12bdfe0f95811ad6c0a091006b919b2834b0619b460cfa596f557edd62e45ab
|
|
|
|
[x86_64]=70423609f27b504d6c0c47e340f33652aea975e45f312324f2dbf91c95a3b188
|
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() {
|
2020-04-22 05:09:57 +02:00
|
|
|
out="$(shellcheck --version 2>/dev/null)" && [[ "$out" = *"
|
2018-08-03 02:09:42 +02:00
|
|
|
version: $version
|
2020-04-22 05:09:57 +02:00
|
|
|
"* ]]
|
|
|
|
}
|
|
|
|
|
|
|
|
if ! check_version; then
|
2018-08-03 02:09:42 +02:00
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
trap 'rm -r "$tmpdir"' EXIT
|
|
|
|
cd "$tmpdir"
|
2020-06-07 05:53:43 +02:00
|
|
|
wget -nv "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
|