Skip to content

Commit

Permalink
add make install
Browse files Browse the repository at this point in the history
  • Loading branch information
peczenyj committed Jun 11, 2024
1 parent 1407d9b commit 3d095f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: info fmt goimports gofumpt lint go_fix go_vet golangci test coverage build clean
.PHONY: info fmt goimports gofumpt lint go_fix go_vet golangci test coverage build install clean

BINARY = fmtquotecheck

Expand Down Expand Up @@ -44,6 +44,9 @@ coverage:

build: $(BINARY)

install:
go install ./cmd/fmtquotecheck

clean:
rm -f $(BINARY)
rm -f coverage.*
Expand Down

0 comments on commit 3d095f9

Please sign in to comment.