From 521b3a78339f2ba699c57de7f059620419c3265c Mon Sep 17 00:00:00 2001 From: William Morriss Date: Tue, 4 Jan 2022 07:05:46 -0600 Subject: [PATCH] bor the default target (#281) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 462f129f51..83eaf6c5e9 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,6 @@ GO ?= latest GORUN = env GO111MODULE=on go run GOPATH = $(shell go env GOPATH) -protoc: - protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto - bor: $(GORUN) build/ci.go install ./cmd/geth mkdir -p $(GOPATH)/bin/ @@ -28,6 +25,9 @@ bor-all: cp $(GOBIN)/geth $(GOBIN)/bor cp $(GOBIN)/* $(GOPATH)/bin/ +protoc: + protoc --go_out=. --go-grpc_out=. ./command/server/proto/*.proto + geth: $(GORUN) build/ci.go install ./cmd/geth @echo "Done building."