From 031d91361762ff15d08c27a529f4692a996f5a9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 26 Jul 2022 12:45:48 +0200 Subject: [PATCH] Makefile: drop deprecated -i flag from go build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a99b65708..a398d8554 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ HELP_FUN = \ } statusgo: ##@build Build status-go as statusd server - go build -mod=vendor -i -v \ + go build -mod=vendor -v \ -tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \ -o $(GOBIN)/statusd ./cmd/statusd @echo "Compilation done." @@ -101,13 +101,13 @@ statusd-prune-docker-image: ##@statusd-prune Build statusd-prune docker image -t $(STATUSD_PRUNE_IMAGE_NAME):latest bootnode: ##@build Build discovery v5 bootnode using status-go deps - go build -i -v \ + go build -v \ -tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \ -o $(GOBIN)/bootnode ./cmd/bootnode/ @echo "Compilation done." node-canary: ##@build Build P2P node canary using status-go deps - go build -i -v \ + go build -v \ -tags '$(BUILD_TAGS)' $(BUILD_FLAGS) \ -o $(GOBIN)/node-canary ./cmd/node-canary/ @echo "Compilation done."