mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00

* Update project dependencies Signed-off-by: Dusan Borovcanin <dusan.borovcanin@mainflux.com> * Update InfluxDB and Cassandra versions Update InfluxDB and Cassandra versions in docker-compose file as well as images version in tests. Signed-off-by: Dusan Borovcanin <dusan.borovcanin@mainflux.com> * Update gRPC version Signed-off-by: Dusan Borovcanin <dusan.borovcanin@mainflux.com> * Make name first value of constraints Signed-off-by: Dusan Borovcanin <dusan.borovcanin@mainflux.com>
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"
|