mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 23:06:31 +00:00
Fix amd64 arch for golang and update to 1.18
This commit is contained in:
parent
6f75513aaa
commit
04014bcf39
@ -2,12 +2,16 @@
|
||||
|
||||
# Installs golang from the web
|
||||
|
||||
version="1.17.4"
|
||||
version="1.18"
|
||||
ARCH=$(uname -m)
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
ARCH=amd64
|
||||
fi
|
||||
|
||||
if [[ "$UNAME_STR" == "Darwin" ]]; then
|
||||
wget -P "$TMP_DIR/" "http://golang.org/dl/go${version}.darwin-$ARCH.pkg"
|
||||
wget -P "$TMP_DIR/" "https://go.dev/dl/go${version}.darwin-$ARCH.pkg"
|
||||
sudo installer -target / -pkg "$TMP_DIR/go${version}.darwin-$ARCH.pkg"
|
||||
elif [[ "$UNAME_STR" == "Linux" ]]; then
|
||||
wget -P "$TMP_DIR/" "http://golang.org/dl/go${version}.linux-$ARCH.tar.gz"
|
||||
wget -P "$TMP_DIR/" "https://go.dev/dl/go${version}.linux-$ARCH.tar.gz"
|
||||
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf "$TMP_DIR/go${version}.linux-$ARCH.tar.gz"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user