Browse Source

[make install_protoc] fix folder name

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
29c1cd03ea
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Makefile

+ 2
- 2
Makefile View File

@ -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:


Loading…
Cancel
Save