From 04bb53950281b016c6dcef639e69727f8e81b456 Mon Sep 17 00:00:00 2001 From: Rjan Date: Thu, 28 Apr 2022 10:10:29 +0200 Subject: [PATCH] fix: lotus-wallet: correct network in version Adding $(GOFLAGS) so that when compiling on calibnet, the correct network is shown, instead of showing just `mainnet`. Should address 2. in #8459 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 73e7dda40..6d5a466b5 100644 --- a/Makefile +++ b/Makefile @@ -193,7 +193,7 @@ BINS+=lotus-health lotus-wallet: rm -f lotus-wallet - $(GOCC) build -o lotus-wallet ./cmd/lotus-wallet + $(GOCC) build $(GOFLAGS) -o lotus-wallet ./cmd/lotus-wallet .PHONY: lotus-wallet BINS+=lotus-wallet