diff options
author | cyBerta <cyberta@riseup.net> | 2019-07-19 17:24:49 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2019-08-02 01:49:37 +0200 |
commit | f5ecd484f6ff909122a9b66669bc89e33388f1f4 (patch) | |
tree | 557fe412b461372a63774f09f4226f775e83ec2a | |
parent | e848d53ed8b1c9cbc29fd514cf818ff949269894 (diff) |
add missing install script to install go sdk
-rwxr-xr-x | go/install_go.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/go/install_go.sh b/go/install_go.sh new file mode 100755 index 00000000..0181d77c --- /dev/null +++ b/go/install_go.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +GO_VERSION=go1.12.7.linux-amd64 + +curl -o $GO_VERSION.tar.gz https://dl.google.com/go/$GO_VERSION.tar.gz +tar -C ./golang -xzf $GO_VERSION.tar.gz |