From d1347d6428a181bb29a7121cd0175ec82eb12248 Mon Sep 17 00:00:00 2001 From: Almaz Sharipov Date: Sun, 30 Mar 2025 16:19:19 +0300 Subject: [PATCH] Update Makefile --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index ee90d56..19f008a 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,6 @@ clean: # Build for production prod: clean - @echo "Building $(PROJECT_NAME) or production..." GOOS=${GOOS} GOARCH=${GOARCH} go build $(TAGS) \ -ldflags="-s -w \ -X ${PROJECT_NAME}/src/app.BuildVersion=${BUILD_VERSION} \ @@ -41,7 +40,6 @@ prod: clean # Build for debugging debug: clean - @echo "Building $(PROJECT_NAME) or production..." GOOS=${GOOS} GOARCH=${GOARCH} go build $(TAGS) \ -ldflags="\ -X ${PROJECT_NAME}/src/app.BuildVersion=${BUILD_VERSION}-debug \