mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-14 08:48:58 +03:00
shell quoting
This commit is contained in:
@@ -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
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user