1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-24 04:49:53 +00:00
Files
steve/vendor/google.golang.org/grpc/install_gae.sh
Darren Shepherd 682e866977 Update vendor
(cherry picked from commit 7e84f96c0f)
2020-05-19 17:50:07 -07:00

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"