mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
342d282780
add dependent kube-storage/replication package to the vendor. update grpc to latest release v1.35.0. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
6 lines
235 B
Bash
6 lines
235 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" |