mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
Makefile: copy bor binary to go bin (#469)
This commit is contained in:
parent
71980bf5b1
commit
8f08503a5a
1 changed files with 2 additions and 0 deletions
2
Makefile
2
Makefile
|
|
@ -28,6 +28,8 @@ GOTEST = GODEBUG=cgocheck=0 go test $(GO_FLAGS) -p 1
|
||||||
bor:
|
bor:
|
||||||
mkdir -p $(GOPATH)/bin/
|
mkdir -p $(GOPATH)/bin/
|
||||||
go build -o $(GOBIN)/bor ./cmd/cli/main.go
|
go build -o $(GOBIN)/bor ./cmd/cli/main.go
|
||||||
|
cp $(GOBIN)/bor $(GOPATH)/bin/
|
||||||
|
@echo "Done building."
|
||||||
|
|
||||||
protoc:
|
protoc:
|
||||||
protoc --go_out=. --go-grpc_out=. ./internal/cli/server/proto/*.proto
|
protoc --go_out=. --go-grpc_out=. ./internal/cli/server/proto/*.proto
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue