shell quoting

pull/634/head
Alistair Mackay 2023-11-12 08:41:07 +00:00
parent 329f1a7311
commit 24d0565f89
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
## Install latest Go ## Install latest Go
```bash ```bash
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | head -1) GO_VERSION=$(curl -s 'https://go.dev/VERSION?m=text' | head -1)
wget https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz wget "https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz"
sudo tar -C /usr/local -xzf ${GO_VERSION}.linux-amd64.tar.gz sudo tar -C /usr/local -xzf ${GO_VERSION}.linux-amd64.tar.gz
``` ```