Skip to content

Instantly share code, notes, and snippets.

@k2wanko
Last active May 15, 2016 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k2wanko/bd7707e481c13adddc577292a7a3dd20 to your computer and use it in GitHub Desktop.
Save k2wanko/bd7707e481c13adddc577292a7a3dd20 to your computer and use it in GitHub Desktop.
gae_go_setup_linux.sh
#!/bin/sh
#
# Usage:
# $ curl -L https://goo.gl/rvkZUP | sh
version="1.9.37"
url="https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-${version}.zip"
curl -s -o go_appengine.zip $url
unzip -q go_appengine.zip
rm -f go_appengine.zip
echo export PATH=\$PATH:$(pwd)/go_appengine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment