2024-05-04 13:18:37 +05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# shellcheck disable=SC2154
|
|
|
|
# Line above disables shellcheck linters:
|
|
|
|
# * SC2154 - variable referenced but not assigned (false positive, assigned when sourced arch.sh).
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2024-09-21 23:59:52 +05:00
|
|
|
go_version=1.23.1
|
2024-05-04 13:18:37 +05:00
|
|
|
|
|
|
|
# shellcheck disable=SC2086,SC2046,SC2164
|
|
|
|
cd $(dirname ${BASH_SOURCE[0]})
|
|
|
|
script_path=$(pwd)
|
|
|
|
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
source "${script_path}/../helpers/arch.sh"
|
|
|
|
|
|
|
|
curl "https://dl.google.com/go/go${go_version}.linux-${arch}.tar.gz" -o "/tmp/go-${arch}.tar.gz"
|
|
|
|
file "/tmp/go-${arch}.tar.gz"
|
|
|
|
tar -xf "/tmp/go-${arch}.tar.gz" -C /usr/local/
|
|
|
|
rm "/tmp/go-${arch}.tar.gz"
|
|
|
|
ln -s /usr/local/go/bin/* /usr/local/bin
|