From 79446e78268be7a5c82fa8289b11ac55e19f235f Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Tue, 1 Oct 2024 01:33:53 -0400 Subject: [PATCH] fix: remove debug info --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 34513ee..3a56bac 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,6 @@ FLAGS := "-s -w -X main.Version=$(VERSION)" all: build build: - echo 'make build' $(foreach APP,$(APPS), go build -ldflags=$(FLAGS) -o $(BUILD_DIR)/$(APP) ./cmd/$(APP);) clean: @@ -24,7 +23,6 @@ prepare-test: git submodule update --init --remote test: - echo 'make test' ./scripts/prepare_test_repos.sh $(TMP_DIR) go test -coverprofile cover.out -v ./...