aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2018-08-09 23:29:20 +0100
committerNiall Sheridan <nsheridan@gmail.com>2018-08-09 23:43:59 +0100
commit347c11ec42264c579eb3f19494e4f75ab8bb8f0d (patch)
tree0171d2a9bcd67e7b9f6a78bbf6af4627e59f5aa1 /Makefile
parent9f8f0194a3c21e640a5b917f86bf204c014d730d (diff)
Remove gRPC
This hasn't been enabled in a while due to gRPC limitations
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d78efbd..466d772 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ test: dep
go test ./...
go install -race $(CASHIER_CMD) $(CASHIERD_CMD)
go vet ./...
- go list ./... |egrep -v 'proto$$' |xargs -L1 golint -set_exit_status
+ go list ./... |xargs -L1 golint -set_exit_status
goimports -d $(SRC_FILES)
$(MAKE) generate
@[ -z "`git status --porcelain`" ] || (echo "unexpected files: `git status --porcelain`" && exit 1)
@@ -34,7 +34,7 @@ migration:
go run ./generate/migration/migration.go $(name)
dep:
- go get -u github.com/golang/lint/golint
+ go get -u golang.org/x/lint/golint
go get -u golang.org/x/tools/cmd/goimports
.PHONY: all build dep generate test cashier cashierd clean migration