shoestrap/recipes/default/golang

14 lines
467 B
Plaintext
Raw Normal View History

2013-08-08 03:23:13 +00:00
#!/bin/bash
# Installs golang from the web
2013-08-08 03:23:13 +00:00
version="1.13.3"
2013-08-08 03:23:13 +00:00
if [[ "$UNAME_STR" == "Darwin" ]]; then
wget -P "$TMP_DIR/" "http://golang.org/dl/go${version}.darwin-amd64-osx10.8.pkg"
installer -pkg "$TMP_DIR/go${version}.darwin-amd64-osx10.8.pkg"
2013-08-08 03:23:13 +00:00
elif [[ "$UNAME_STR" == "Linux" ]]; then
wget -P "$TMP_DIR/" "http://golang.org/dl/go${version}.linux-amd64.tar.gz"
2013-08-08 03:23:13 +00:00
# Do something
echo "**** Install from $TMP_DIR/go${version}.linux-amd64.tar.gz"
fi