From 3c45a2a67a59279001aedbf66af3f138f58838ec Mon Sep 17 00:00:00 2001 From: DarthSim Date: Wed, 17 Sep 2025 17:05:26 +0300 Subject: [PATCH] Add -v to go build command in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 30c0006a..999e3097 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ all: build # make build -- -o output_name .PHONY: build build: - @$(GOBUILD) -o $(BINARY) $(BUILD_ARGS) $(SRCDIR) + @$(GOBUILD) -v -o $(BINARY) $(BUILD_ARGS) $(SRCDIR) # Clean .PHONY: clean