You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

7 lines
236 B

  1. #!/bin/bash
  2. TMP=$(mktemp -d /tmp/sdk.XXX) \
  3. && curl -o $TMP.zip "https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.68.zip" \
  4. && unzip -q $TMP.zip -d $TMP \
  5. && export PATH="$PATH:$TMP/go_appengine"