From cdcae2425b1d0257b0a4c9eabd830968c934e0d1 Mon Sep 17 00:00:00 2001 From: Ri-go Date: Wed, 10 Jan 2024 02:06:43 +0800 Subject: [PATCH] fix: makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 40b5cd70..d1be7dca 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ push: install: export GOPROXY=direct install: export VERSION_FLAGS="-X $(VERSION_PKG).GitCommit=$(GIT_COMMIT) -X $(VERSION_PKG).BuildDate=$(BUILD_DATE)" install: - docker=$(DOCKER) && go install -tags muslc -ldflags $(VERSION_FLAGS) ./cmd/... || go install -ldflags $(VERSION_FLAGS) ./cmd/... + $(DOCKER) && go install -tags muslc -ldflags $(VERSION_FLAGS) ./cmd/... || go install -ldflags $(VERSION_FLAGS) ./cmd/... .PHONY: install image push test gen