Skip to content

Commit

Permalink
make: go build args should not be quoted
Browse files Browse the repository at this point in the history
  • Loading branch information
wader committed Oct 6, 2021
1 parent f9622c2 commit 30ad643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ all: test fq
.PHONY: fq
fq: VERSION=$(shell git describe --all --long --dirty 2>/dev/null || echo nogit)
fq:
CGO_ENABLED=0 go build -o fq -ldflags "${GO_BUILD_LDFLAGS} -X main.version=${VERSION}" "${GO_BUILD_FLAGS}" .
CGO_ENABLED=0 go build -o fq -ldflags "${GO_BUILD_LDFLAGS} -X main.version=${VERSION}" ${GO_BUILD_FLAGS} .

.PHONY: test
test: testgo testjq testcli
Expand Down

0 comments on commit 30ad643

Please sign in to comment.