From 3d47b63d21c9f5aac1518ceedfaac0de9a477192 Mon Sep 17 00:00:00 2001 From: Greg Dorrell Date: Tue, 17 Oct 2017 11:52:37 +0100 Subject: [PATCH] Update homebrew installation command (#672) * Update homebrew installation command The command to install via homebrew didn't work for me. Presumably this changed in a recent version of homebrew. This is the error I received: ``` $ brew install coursier/formulas/coursier Error: coursier/formulas/coursier is a head-only formula Install with `brew install --HEAD coursier/formulas/coursier` ``` So this change just incorporates the fix it suggests, which works for me. * Fix other brew command, and report things to doc/README.md --- README.md | 4 ++-- doc/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 53af2467b..373d4ae3b 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ $ curl -L -o coursier https://git.io/vgvpD && chmod +x coursier && ./coursier -- Alternatively on OS X, install it via homebrew, ``` -$ brew install coursier/formulas/coursier +$ brew install --HEAD coursier/formulas/coursier ``` Run an application distributed via artifacts with @@ -240,7 +240,7 @@ It downloads the artifacts required to launch coursier on the first run. Alternatively on OS X, install it via homebrew, that puts the `coursier` launcher directly in your PATH, ``` -$ brew install coursier/formulas/coursier +$ brew install --HEAD coursier/formulas/coursier ``` ``` diff --git a/doc/README.md b/doc/README.md index e0e327092..bf01a4aee 100644 --- a/doc/README.md +++ b/doc/README.md @@ -88,7 +88,7 @@ $ curl -L -o coursier https://git.io/vgvpD && chmod +x coursier && ./coursier -- Alternatively on OS X, install it via homebrew, ``` -$ brew install coursier/formulas/coursier +$ brew install --HEAD coursier/formulas/coursier ``` Run an application distributed via artifacts with @@ -268,7 +268,7 @@ It downloads the artifacts required to launch coursier on the first run. Alternatively on OS X, install it via homebrew, that puts the `coursier` launcher directly in your PATH, ``` -$ brew install coursier/formulas/coursier +$ brew install --HEAD coursier/formulas/coursier ``` ```