Fix non-templated release value

Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
This commit is contained in:
Nathan LeClaire 2016-01-29 13:34:29 -08:00
parent 5ab6f319e9
commit 240d2fa993
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ $ curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker
On Windows with git bash
```console
$ if [[ ! -d "$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \
curl -L https://github.com/docker/machine/releases/download/v0.6.0/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
curl -L https://github.com/docker/machine/releases/download/{{VERSION}}/docker-machine-Windows-x86_64.exe > "$HOME/bin/docker-machine.exe" && \
chmod +x "$HOME/bin/docker-machine.exe"
```