From be9f918bd5a7f931ccb00fab68618fb3af169efd Mon Sep 17 00:00:00 2001 From: chenchuk77 Date: Tue, 2 Jan 2018 19:49:52 +0200 Subject: [PATCH] Update install-machine.md (#5644) missing line continuation char at Linux instructions. --- machine/install-machine.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machine/install-machine.md b/machine/install-machine.md index 26d1b219a4..6e2c2be63f 100644 --- a/machine/install-machine.md +++ b/machine/install-machine.md @@ -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 ```