Skip to content

Commit

Permalink
Add a Makefile and update .gitignore
Browse files Browse the repository at this point in the history
A somewhat start for normal release procedure
  • Loading branch information
doronbehar committed Apr 16, 2020
1 parent 61b2474 commit 4c80cb6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@

# End of https://www.gitignore.io/api/go
/cmd/pistol/pistol
/pistol
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
pistol:
go build ./cmd/pistol
all: pistol

install:
go install ./cmd/pistol

.PHONY: pistol

0 comments on commit 4c80cb6

Please sign in to comment.