From be5380853ccfd68aa53d411142050cb98183debf Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Mon, 25 Mar 2024 20:19:20 -0400 Subject: [PATCH] chore: update go --- scripts/debian/go.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/debian/go.sh b/scripts/debian/go.sh index 8d5c436..a492985 100755 --- a/scripts/debian/go.sh +++ b/scripts/debian/go.sh @@ -1,9 +1,9 @@ #!/bin/env bash # sudo apt-get install wget -wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz +wget https://go.dev/dl/go1.22.1.linux-amd64.tar.gz sudo rm -rf /usr/local/go -sudo tar -C /usr/local -xzf go1.21.5.linux-amd64.tar.gz +sudo tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz -echo export PATH=$PATH:/usr/local/go/bin:"$HOME"/go/bin >>~/.profile +echo export PATH=$PATH:/usr/local/go/bin >>~/.profile