From 92b9edd34ba32cc0942588de39da5dd2d74ddb80 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 21 Jul 2011 10:14:44 -0400 Subject: [PATCH] brew pull --install should build from source. --- Library/Contributions/examples/brew-pull.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Contributions/examples/brew-pull.rb b/Library/Contributions/examples/brew-pull.rb index d96811b6fa..34fb0e4d31 100755 --- a/Library/Contributions/examples/brew-pull.rb +++ b/Library/Contributions/examples/brew-pull.rb @@ -60,9 +60,9 @@ HOMEBREW_REPOSITORY.cd do formula = File.basename(filename, '.rb') ohai "Installing #{formula}" # Not sure if this is the best way to install? - safe_system 'brew', 'install', '--force', formula + safe_system 'brew', 'install', '--force', '--build-from-source', formula end end end end -end \ No newline at end of file +end