summaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2019-07-19 17:24:49 +0200
committercyBerta <cyberta@riseup.net>2019-08-02 01:49:37 +0200
commitf5ecd484f6ff909122a9b66669bc89e33388f1f4 (patch)
tree557fe412b461372a63774f09f4226f775e83ec2a /go
parente848d53ed8b1c9cbc29fd514cf818ff949269894 (diff)
add missing install script to install go sdk
Diffstat (limited to 'go')
-rwxr-xr-xgo/install_go.sh6
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