This commit is contained in:
2025-05-16 22:11:10 +03:00
commit 02991449f1
7 changed files with 157 additions and 0 deletions

10
custom/010_vanilla_go.sh Executable file
View File

@@ -0,0 +1,10 @@
# install vanilla Go 1.24.3
set -e
echo "fetching go compiler"
curl --location https://go.dev/dl/go1.24.3.linux-amd64.tar.gz -o /tmp/go.tar.gz
echo "unpacking go compiler..."
tar -xzf /tmp/go.tar.gz -C /usr/local
echo "removing archive"
rm /tmp/go.tar.gz
ln -s /usr/local/go/bin/* /usr/bin
echo "Go 1.24.3 installed into /usr/local"