Skip to content

Commit

Permalink
chore: go build output needs a trailing slash...
Browse files Browse the repository at this point in the history
Signed-off-by: William Artero <git@artero.dev>
  • Loading branch information
wwmoraes committed Dec 5, 2023
1 parent 4d1c8fa commit 0f0ca50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .make/golang.mk
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ golang-build:
$(info generating files)
@${GO} generate ./...
$(info building binaries)
@${GO} build ${GOLANG_FLAGS} -o ./${GOLANG_OUTPUT_BIN_PATH} ./...
@${GO} build ${GOLANG_FLAGS} -o ./${GOLANG_OUTPUT_BIN_PATH}/ ./...

.PHONY: golang-clean
golang-clean:
Expand Down

0 comments on commit 0f0ca50

Please sign in to comment.