mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-20 04:21:32 +01:00
* merge gobgp-update into master * update travis.yaml go version: * go get github.com/osrg/gobgp to build gobgp * install git as go get needs it
7 lines
236 B
Bash
7 lines
236 B
Bash
#!/bin/bash
|
|
|
|
TMP=$(mktemp -d /tmp/sdk.XXX) \
|
|
&& curl -o $TMP.zip "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.68.zip" \
|
|
&& unzip -q $TMP.zip -d $TMP \
|
|
&& export PATH="$PATH:$TMP/go_appengine"
|