From d6546e342b3ad1c5d5c53c02cb887264c3797a9f Mon Sep 17 00:00:00 2001 From: Reut Sharabani Date: Mon, 23 Oct 2017 23:21:16 +0300 Subject: [PATCH] Better installation instruction in release notes Changed sample download script to use the built in `-o` optoin in `curl` instead of redicrecting stdout's output. This allows users to prepend `sudo` to the snippet to make it work in common use cases where root permissions are needed to create the output file. From `curl`: -o, --output Write output to instead of stdout. Signed-off-by: Reut Sharabani --- project/RELEASE-PROCESS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/RELEASE-PROCESS.md b/project/RELEASE-PROCESS.md index 5b30545f4..d4afb87b9 100644 --- a/project/RELEASE-PROCESS.md +++ b/project/RELEASE-PROCESS.md @@ -89,7 +89,7 @@ When prompted build the non-linux binaries and test them. Alternatively, you can use the usual commands to install or upgrade Compose: ``` - curl -L https://github.com/docker/compose/releases/download/1.16.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose + curl -L https://github.com/docker/compose/releases/download/1.16.0/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose ```