From d9048f3c9662dc8cd0644dbb2043d49e8a03647d Mon Sep 17 00:00:00 2001 From: darron froese Date: Thu, 16 Apr 2015 14:52:18 -0600 Subject: [PATCH] Follow the redirects. Otherwise it just errors with: ``` DarronFroeseDD@: docker-machine -v /usr/local/bin/docker-machine: line 1: syntax error near unexpected token `<' /usr/local/bin/docker-machine: line 1: `You are being redirected.' ``` --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index c431d5f027..9f3328148e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -57,7 +57,7 @@ To install on OSX or Linux, download the proper binary to somewhere in your most OSX machines these commands should suffice: ``` -$ curl https://github.com/docker/machine/releases/download/v0.2.0/docker-machine_darwin-amd64 > /usr/local/bin/docker-machine +$ curl -L https://github.com/docker/machine/releases/download/v0.2.0/docker-machine_darwin-amd64 > /usr/local/bin/docker-machine $ chmod +x /usr/local/bin/docker-machine ```