Remove old protoc installer

This commit is contained in:
Alex Dadgar 2018-08-01 13:50:40 -07:00
parent 95ccfd6ae1
commit 7f5c37de75
2 changed files with 1 additions and 13 deletions

6
Vagrantfile vendored
View File

@ -138,14 +138,10 @@ def configureLinuxProvisioners(vmCfg)
vmCfg.vm.provision "shell",
privileged: true,
path: './scripts/vagrant-linux-protoc.sh'
vmCfg.vm.provision "shell",
privileged: false,
path: './scripts/vagrant-linux-priv-ui.sh'
vmCfg.vm.provision "shell",
privileged: false,
privileged: true,
path: './scripts/vagrant-linux-priv-protoc.sh'
return vmCfg

View File

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