From d1f9820ef1fe7e626b7849a01a86af96fa7587d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Fri, 2 Nov 2018 15:10:02 -0400 Subject: [PATCH 1/2] Update link to Homebrew's installation docs. The link currently in the instructions points to a wiki page which is no longer available. --- sites/en/installfest/_install_homebrew.step | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/en/installfest/_install_homebrew.step b/sites/en/installfest/_install_homebrew.step index 094167a18..88d7447e6 100644 --- a/sites/en/installfest/_install_homebrew.step +++ b/sites/en/installfest/_install_homebrew.step @@ -3,7 +3,7 @@ console %q{ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/inst message "You may have to press 'ENTER' when prompted and type in your password." -important "If that doesn't work, visit and follow the instructions there." +important "If that doesn't work, visit and follow the instructions there." verify do console "brew -v" From 5c9614c259cf73cfcf59c3230659c85322b923be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steven!=20Ragnar=C3=B6k?= Date: Fri, 2 Nov 2018 15:18:07 -0400 Subject: [PATCH 2/2] Use absolute path to the builtin ruby This comes from homebrew's own installation instructions and is important for machines that may already have a `ruby` binary which isn't the system ruby. --- sites/en/installfest/_install_homebrew.step | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/en/installfest/_install_homebrew.step b/sites/en/installfest/_install_homebrew.step index 88d7447e6..ad221d6d8 100644 --- a/sites/en/installfest/_install_homebrew.step +++ b/sites/en/installfest/_install_homebrew.step @@ -1,5 +1,5 @@ -console %q{ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"} +console %q{/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"} message "You may have to press 'ENTER' when prompted and type in your password."