init
This commit is contained in:
10
custom/010_vanilla_go.sh
Executable file
10
custom/010_vanilla_go.sh
Executable 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"
|
||||
Reference in New Issue
Block a user