Skip to content

Commit 460a4d4

Browse files
committed
revert
1 parent ea88da8 commit 460a4d4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

deploy.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ if ! command -v go &> /dev/null; then
99
echo "Go not found in PATH. Checking /usr/local/go/bin..."
1010
if [ -x /usr/local/go/bin/go ]; then
1111
echo "Go binary found in /usr/local/go/bin. Adding to PATH..."
12+
export PATH=$PATH:/usr/local/go/bin
1213
else
1314
echo "Go not installed. Installing Go 1.24.0..."
1415
cd /tmp
1516
wget -q https://go.dev/dl/go1.24.0.linux-amd64.tar.gz
1617
sudo rm -rf /usr/local/go
1718
sudo tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz
19+
export PATH=$PATH:/usr/local/go/bin
1820
cd -
1921
fi
2022
else

0 commit comments

Comments
 (0)