summaryrefslogtreecommitdiff
path: root/hack/install_golangci.sh
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-01-17 15:38:30 -0500
committerGitHub <noreply@github.com>2021-01-17 15:38:30 -0500
commit5b3c7a52939275784c45c9747dd5864bd0581ff5 (patch)
treeb5d974ab2f1c2e7159edeb95238cf6148e7ee2e9 /hack/install_golangci.sh
parent00ab9cab01af125a01ea53b5f48c0d13943f85a1 (diff)
parentcaaaa2c5e18fe76d6b2ce8e7a700fa85212a3a3e (diff)
downloadpodman-5b3c7a52939275784c45c9747dd5864bd0581ff5.tar.gz
podman-5b3c7a52939275784c45c9747dd5864bd0581ff5.tar.bz2
podman-5b3c7a52939275784c45c9747dd5864bd0581ff5.zip
Merge pull request #8995 from vrothberg/lint-lint-lint
[CI:DOCS] lint lint lint
Diffstat (limited to 'hack/install_golangci.sh')
-rwxr-xr-xhack/install_golangci.sh20
1 files changed, 13 insertions, 7 deletions
diff --git a/hack/install_golangci.sh b/hack/install_golangci.sh
index 617679751..41cf90ddc 100755
--- a/hack/install_golangci.sh
+++ b/hack/install_golangci.sh
@@ -1,17 +1,23 @@
#!/usr/bin/env bash
-set -e
-
die() { echo "${1:-No error message given} (from $(basename $0))"; exit 1; }
[ -n "$VERSION" ] || die "\$VERSION is empty or undefined"
-[ -n "$GOBIN" ] || die "\$GOBIN is empty or undefined"
-BIN="$GOBIN/golangci-lint"
+function install() {
+ echo "Installing golangci-lint v$VERSION into $BIN"
+ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b ./bin v$VERSION
+}
+
+BIN="./bin/golangci-lint"
if [ ! -x "$BIN" ]; then
- echo "Installing golangci-lint v$VERSION into $GOBIN"
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOBIN v$VERSION
+ install
else
# Prints its own file name as part of --version output
- echo "Using existing $(dirname $BIN)/$($BIN --version)"
+ $BIN --version | grep "$VERSION"
+ if [ $? -eq 0 ]; then
+ echo "Using existing $(dirname $BIN)/$($BIN --version)"
+ else
+ install
+ fi
fi