mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add promu installation logging to Makefile
Due to bad GitHub connectivity, "make" frequently got stuck at the promu step for me, and I was thinking that "format" was taking a long time because the promu step wasn't logged. All other Makefile targets have log statements...
This commit is contained in:
parent
737ae60cea
commit
92d60ba4c0
1
Makefile
1
Makefile
|
@ -67,6 +67,7 @@ assets:
|
||||||
@$(GO) fmt ./web/ui
|
@$(GO) fmt ./web/ui
|
||||||
|
|
||||||
promu:
|
promu:
|
||||||
|
@echo ">> fetching promu"
|
||||||
@GOOS=$(shell uname -s | tr A-Z a-z) \
|
@GOOS=$(shell uname -s | tr A-Z a-z) \
|
||||||
GOARCH=$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m))) \
|
GOARCH=$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m))) \
|
||||||
$(GO) get -u github.com/prometheus/promu
|
$(GO) get -u github.com/prometheus/promu
|
||||||
|
|
Loading…
Reference in a new issue