summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-01-15 19:01:25 +0100
committerGitHub <noreply@github.com>2020-01-15 19:01:25 +0100
commit34429f3b534960d2505789fcb0ac0278fc4aa4c0 (patch)
tree6c3d94e119422661a37db1a5e0b9b511cc5124c4 /hack
parent974373f2b3202b93e33251dcc5b14f3274cc0796 (diff)
parentb830d3eb07e163864048fb6b4d0873cb61965dd0 (diff)
downloadpodman-34429f3b534960d2505789fcb0ac0278fc4aa4c0.tar.gz
podman-34429f3b534960d2505789fcb0ac0278fc4aa4c0.tar.bz2
podman-34429f3b534960d2505789fcb0ac0278fc4aa4c0.zip
Merge pull request #4870 from vrothberg/gating-dockerfile
Gating dockerfile
Diffstat (limited to 'hack')
-rw-r--r--hack/install_golangci.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/hack/install_golangci.sh b/hack/install_golangci.sh
new file mode 100644
index 000000000..9d23bbd31
--- /dev/null
+++ b/hack/install_golangci.sh
@@ -0,0 +1,5 @@
+#!/bin/bash -e
+$GOBIN/golangci-lint --version | grep $VERSION
+if [ $? -ne 0 ]; then
+ curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOBIN v$VERSION
+fi