shell quoting
parent
329f1a7311
commit
24d0565f89
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue