2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-25 13:09:02 +00:00
restic/vendor/google.golang.org/grpc/install_gae.sh

7 lines
236 B
Bash
Raw Normal View History

2019-01-27 20:07:57 +00:00
#!/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"