mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
1909a95118
* Vendor updates for gRPC and xDS server * xDS server implementation for serving Envoy as a Connect proxy * Address initial review comments * consistent envoy package aliases; typos fixed; override TLS and authz for custom listeners * Moar Typos * Moar typos
7 lines
236 B
Bash
Executable File
7 lines
236 B
Bash
Executable File
#!/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"
|