From fd6a5615f012909096333c1d7c0e49ba3239af60 Mon Sep 17 00:00:00 2001 From: James Mills <1290234+prologic@users.noreply.github.com> Date: Thu, 11 Jul 2019 22:11:13 +1000 Subject: [PATCH] Fix Makefile --- .gitignore | 6 +++++- Makefile | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 357d366..312e1e4 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ -pastebin +*~ +*.bak + +/pb +/pastebin diff --git a/Makefile b/Makefile index eed8b6d..ab86039 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,11 @@ dev: build build: clean go get ./... + go build ./cmd/pb/... go build . install: + go install ./cmd/pb/... go install . test: