From 54719fb180ad54e6fffa15afb8b3a3d7411c84e1 Mon Sep 17 00:00:00 2001 From: Manav Darji Date: Wed, 27 Jul 2022 22:27:26 +0530 Subject: [PATCH] Makefile: copy bor binary to go bin (#469) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 46ecdec886..a8e14cf06a 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,8 @@ GOTEST = GODEBUG=cgocheck=0 go test $(GO_FLAGS) -p 1 bor: mkdir -p $(GOPATH)/bin/ go build -o $(GOBIN)/bor ./cmd/cli/main.go + cp $(GOBIN)/bor $(GOPATH)/bin/ + @echo "Done building." protoc: protoc --go_out=. --go-grpc_out=. ./internal/cli/server/proto/*.proto