Update install-machine.md (#5644)

missing line continuation char at Linux instructions.
This commit is contained in:
chenchuk77
2018-01-02 19:49:52 +02:00
committed by Misty Stanley-Jones
parent f8b69ee538
commit be9f918bd5

View File

@@ -31,8 +31,8 @@ on GitHub.
If you are running on **Linux**:
```console
$ curl -L https://github.com/docker/machine/releases/download/v{{site.machine_version}}/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine &&
chmod +x /tmp/docker-machine &&
$ curl -L https://github.com/docker/machine/releases/download/v{{site.machine_version}}/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && \
chmod +x /tmp/docker-machine && \
sudo cp /tmp/docker-machine /usr/local/bin/docker-machine
```