Fix Makefile

This commit is contained in:
James Mills 2019-07-11 22:11:13 +10:00
parent 5cab47c0e5
commit fd6a5615f0
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
2 changed files with 7 additions and 1 deletions

6
.gitignore vendored
View File

@ -1 +1,5 @@
pastebin
*~
*.bak
/pb
/pastebin

View File

@ -7,9 +7,11 @@ dev: build
build: clean
go get ./...
go build ./cmd/pb/...
go build .
install:
go install ./cmd/pb/...
go install .
test: