Files
nomad/scripts/vagrant-linux-protoc.sh
Chelsea Holland Komlo 73c9560314 correct operating system
2018-07-31 15:44:02 -04:00

9 lines
275 B
Bash
Executable File

#!/usr/bin/env bash
# set up protoc so that we can use it for protobuf generation
PROTOC_ZIP=protoc-3.3.0-linux-x86_64.zip
curl -OL https://github.com/google/protobuf/releases/download/v3.3.0/$PROTOC_ZIP
sudo unzip -o $PROTOC_ZIP -d /usr/local bin/protoc
rm -f $PROTOC_ZIP