Last active
January 6, 2025 18:48
-
-
Save Northernside/898f2c414ccd3b9e57587bc05d05c30a to your computer and use it in GitHub Desktop.
This file contains 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 | |
TEMP_DIR="/tmp/go_install" | |
INSTALL_DIR="/usr/local" | |
ARCH="linux-amd64" | |
echo "Fetching the latest Go version..." | |
LATEST_VERSION=$(curl -s https://go.dev/dl/ | grep -oP 'go[0-9]+\.[0-9]+(\.[0-9]+)?' | head -1) | |
if [[ -z "$LATEST_VERSION" ]]; then | |
echo "Failed to fetch the latest Go version. Please check your internet connection." | |
exit 1 | |
fi | |
echo "Latest version found: $LATEST_VERSION" | |
GO_TAR="$LATEST_VERSION.$ARCH.tar.gz" | |
GO_URL="https://golang.org/dl/$GO_TAR" | |
echo "Downloading $GO_TAR..." | |
mkdir -p "$TEMP_DIR" | |
curl -Lo "$TEMP_DIR/$GO_TAR" "$GO_URL" | |
if [[ $? -ne 0 ]]; then | |
echo "Failed to download Go. Please check the URL or your connection." | |
exit 1 | |
fi | |
echo "Removing any previous Go installation..." | |
sudo rm -rf "$INSTALL_DIR/go" | |
echo "Extracting Go archive..." | |
sudo tar -C "$INSTALL_DIR" -xzf "$TEMP_DIR/$GO_TAR" | |
if [[ $? -ne 0 ]]; then | |
echo "Failed to extract the Go archive." | |
exit 1 | |
fi | |
PROFILE_FILE="$HOME/.bashrc" | |
if ! grep -q "export PATH=\$PATH:/usr/local/go/bin" "$PROFILE_FILE"; then | |
echo "Adding Go to PATH..." | |
echo 'export PATH=$PATH:/usr/local/go/bin' >> "$PROFILE_FILE" | |
source "$PROFILE_FILE" | |
fi | |
source ~/.bashrc | |
echo "Verifying Go installation..." | |
if command -v go > /dev/null; then | |
echo "Go installed successfully: $(go version)" | |
else | |
echo "Go installation failed." | |
exit 1 | |
fi | |
echo "Cleaning up..." | |
rm -rf "$TEMP_DIR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment