Last active
June 9, 2024 14:36
-
-
Save mdsohelmia/c1e4f1a8b5788b73d704a79f0ae1835b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -e | |
wget https://go.dev/dl/go1.22.4.linux-amd64.tar.gz | |
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz | |
rm go1.22.4.linux-amd64.tar.gz | |
echo "Checking golang version" | |
echo "export PATH=$PATH:/usr/local/go/bin" >>~/.bashrc | |
source ~/.bashrc | |
go version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment