From c22dd5a21acc9ed92d8649c1e2dd1e1ff7f3273c Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Thu, 24 Aug 2023 18:55:55 +0200 Subject: [PATCH] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 90fd31d..aef71d0 100644 --- a/install.sh +++ b/install.sh @@ -21,9 +21,9 @@ curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - sudo apt-get install -y nodejs # Download and install Go 1.21.0 -wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz +wget https://golang.org/dl/go1.21.0.linux-amd64.tar.gz sudo rm -rf /usr/local/go -sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz +sudo tar -C /usr/local -xzf go1.21.0.linux-amd64.tar.gz # Create a symbolic link for the Go binary sudo ln -s /usr/local/go/bin/go /usr/local/bin/go