From 3c7ed0656bb75dbae7f051c8206c6c627723d190 Mon Sep 17 00:00:00 2001 From: Vincent Liao <vinnyliao@users.noreply.github.com> Date: Wed, 8 Oct 2014 00:30:50 -0400 Subject: [PATCH] Update homebrew install url I got the following output after trying to install maximum-awesome on a machine without homebrew. $ rake -- Homebrew -------------------------------------------------------------------- Whoops, the Homebrew installer has moved! Please instead run: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Also, please ask wherever you got this link from to update it to the above. Thanks! -- Homebrew Cask --------------------------------------------------------------- sh: brew: command not found sh: brew: command not found Failed to tap caskroom/homebrew-cask in Homebrew. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 52434e2..47f81c5 100644 --- a/Rakefile +++ b/Rakefile @@ -119,7 +119,7 @@ namespace :install do desc 'Update or Install Brew' task :brew do step 'Homebrew' - unless system('which brew > /dev/null || ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"') + unless system('which brew > /dev/null || ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"') raise "Homebrew must be installed before continuing." end end -- GitLab