From 63bd05d40e30be9fc118dba852627806c21e46b5 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Mon, 18 Aug 2014 13:36:37 -0700 Subject: [PATCH] Collapse install instructions into single line For maximum copy and paste happiness Signed-off-by: Ben Firshman --- docs/install.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/install.md b/docs/install.md index 6d2aeb015..02bdce0f9 100644 --- a/docs/install.md +++ b/docs/install.md @@ -16,13 +16,11 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun Next, install Fig. On OS X: - $ curl -L https://github.com/docker/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig - $ chmod +x /usr/local/bin/fig + curl -L https://github.com/docker/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig; chmod +x /usr/local/bin/fig On 64-bit Linux: - $ curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig - $ chmod +x /usr/local/bin/fig + curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig; chmod +x /usr/local/bin/fig Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing):