mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-14 16:58:58 +03:00
shell quoting
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
## Install latest Go
|
||||
|
||||
```bash
|
||||
GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | head -1)
|
||||
wget https://dl.google.com/go/${GO_VERSION}.linux-amd64.tar.gz
|
||||
GO_VERSION=$(curl -s 'https://go.dev/VERSION?m=text' | head -1)
|
||||
wget "https://dl.google.com/go/${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