1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00

Merge branch 'master' of github.com:TimothyYe/godns

This commit is contained in:
Timothy 2021-02-20 11:40:59 +08:00
commit 7ac3eed730
No known key found for this signature in database
GPG Key ID: DA25A2861AA0F2D1

View File

@ -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