mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
75513575be
* store dependency's in git * since we vendor ... rm tech-depts * aad make target 'vendor' to update vendor folder (manual task)
6 lines
236 B
Bash
6 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"
|