Files
interview/custom/010_vanilla_go.sh

10 lines
237 B
Bash
Raw Permalink Normal View History

2025-05-16 22:11:10 +03:00
# install vanilla Go 1.24.3
set -e
2025-05-16 22:25:12 +03:00
2025-05-16 22:11:10 +03:00
curl --location https://go.dev/dl/go1.24.3.linux-amd64.tar.gz -o /tmp/go.tar.gz
tar -xzf /tmp/go.tar.gz -C /usr/local
rm /tmp/go.tar.gz
ln -s /usr/local/go/bin/* /usr/bin
2025-05-16 22:25:12 +03:00
echo "Go compiler installed"