mirror of https://github.com/k3s-io/k3s
11 lines
182 B
Bash
11 lines
182 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
cd /home/travis
|
||
|
|
||
|
basename=protoc-3.5.1-linux-x86_64
|
||
|
wget https://github.com/google/protobuf/releases/download/v3.5.1/$basename.zip
|
||
|
unzip $basename.zip
|
||
|
|