fix(docs): link for go install (#792)

Existing link leads to 404 because the patch number is missing. Updated Go installation link to version 1.24.12.
This commit is contained in:
Marc Bernard
2026-01-20 22:08:52 +01:00
committed by GitHub
parent 08bc632a03
commit e59955a580

View File

@@ -44,8 +44,8 @@ sudo apt update
sudo apt install -y git
# Install Go (apt version may be outdated, use official installer)
wget https://go.dev/dl/go1.24.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.24.linux-amd64.tar.gz
wget https://go.dev/dl/go1.24.12.linux-amd64.tar.gz
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.24.12.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> ~/.bashrc
source ~/.bashrc