From 2154fcc76278bff820e8808c972a13aff16c3c8a Mon Sep 17 00:00:00 2001 From: Timothy Ye Date: Fri, 5 Feb 2021 17:52:38 +0000 Subject: [PATCH] update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0bc2876..08a4d99 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ BINARY=godns # Builds the project build: - GO111MODULE=on go build cmd/godns/godns.go -o ${BINARY} -ldflags "-X main.Version=${VERSION}" + GO111MODULE=on go build -ldflags "-X main.Version=${VERSION}" -o ${BINARY} cmd/godns/godns.go # Installs our project: copies binaries install: GO111MODULE=on go install