From 29c1cd03ea5402d3515d302b867b0e2b5d92d714 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Mon, 20 Nov 2017 17:09:18 -0600 Subject: [PATCH] [make install_protoc] fix folder name --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 06efbf344..aeb6d7160 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,12 @@ PACKAGES=$(shell go list ./... | grep -v '/vendor/') install_protoc: # https://github.com/google/protobuf/releases curl -L https://github.com/google/protobuf/releases/download/v3.4.1/protobuf-cpp-3.4.1.tar.gz | tar xvz && \ - cd protobuf-cpp-3.4.1 && \ + cd protobuf-3.4.1 && \ DIST_LANG=cpp ./configure && \ make && \ make install && \ cd .. && \ - rm -rf protobuf-cpp-3.4.1 + rm -rf protobuf-3.4.1 go get github.com/golang/protobuf/protoc-gen-go protoc: