Skip to content

Commit

Permalink
build: do not put binary in output/ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
shoenig committed Jul 23, 2023
1 parent 5e53908 commit ec6c48a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ NAME = donutdns

.PHONY: build
build: clean
CGO_ENABLED=0 go build -o output/$(NAME)
CGO_ENABLED=0 go build -o $(NAME)

.PHONY: clean
clean:
rm -rf dist output/$(NAME)
rm -rf dist $(NAME)

.PHONY: test
test:
Expand Down

0 comments on commit ec6c48a

Please sign in to comment.