aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorPrometheusBot <prometheus-team@googlegroups.com>2019-06-23 07:37:40 +0100
committerBen Kochie <superq@gmail.com>2019-06-23 08:37:40 +0200
commite57f05aace229e508e294420f5ffc4649e26ed71 (patch)
treeef9b2065f9e294577495efafbfb7ac9b98d3f771 /Makefile.common
parenta9231ad6ad82419b7dd56383ec1c62aa93bb3d2b (diff)
downloadprometheus_node_collector-e57f05aace229e508e294420f5ffc4649e26ed71.tar.bz2
prometheus_node_collector-e57f05aace229e508e294420f5ffc4649e26ed71.tar.xz
prometheus_node_collector-e57f05aace229e508e294420f5ffc4649e26ed71.zip
makefile: update Makefile.common with newer version (#1378)
Signed-off-by: prombot <prometheus-team@googlegroups.com>
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 6b94f83..d7aea1b 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -248,7 +248,9 @@ proto:
248ifdef GOLANGCI_LINT 248ifdef GOLANGCI_LINT
249$(GOLANGCI_LINT): 249$(GOLANGCI_LINT):
250 mkdir -p $(FIRST_GOPATH)/bin 250 mkdir -p $(FIRST_GOPATH)/bin
251 curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(FIRST_GOPATH)/bin $(GOLANGCI_LINT_VERSION) 251 curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/$(GOLANGCI_LINT_VERSION)/install.sh \
252 | sed -e '/install -d/d' \
253 | sh -s -- -b $(FIRST_GOPATH)/bin $(GOLANGCI_LINT_VERSION)
252endif 254endif
253 255
254ifdef GOVENDOR 256ifdef GOVENDOR