Merge pull request #2965 from nathanleclaire/revise_release_template

Fix non-templated release value
This commit is contained in:
Nathan LeClaire 2016-01-29 14:51:07 -08:00
commit 26b00ce1ec
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"
```