-
Notifications
You must be signed in to change notification settings - Fork 499
Closed
Labels
Description
A couple of issues I ran into with script/install-protoc, probably easily fixable:
-
If you already have
/usr/local/protoc, it fails to install the correct version withmv: cannot move 'protoc' to '/usr/local/protoc': Directory not empty. Possible solution is to remove that path or move protoc to a relative./bin/path that won't mess with system installs. -
protoc-gen-goinstall usesgo get, which pulls the latest version, not the version in glide.lock. This leads tomake compilefailing. Possible solution: build using the version pulled down by glide viago build ./vendor/github.com/golang/protobuf/protoc-gen-go.
Reactions are currently unavailable