aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2011-07-21 10:14:44 -0400
committerMike McQuaid2011-07-21 10:14:44 -0400
commit92b9edd34ba32cc0942588de39da5dd2d74ddb80 (patch)
treeef9038f73b183242ec31b560be0789bb77ecea41
parentf0eab140f87dde0c4ef21da7df654952906908ce (diff)
downloadbrew-92b9edd34ba32cc0942588de39da5dd2d74ddb80.tar.bz2
brew pull --install should build from source.
-rwxr-xr-xLibrary/Contributions/examples/brew-pull.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Contributions/examples/brew-pull.rb b/Library/Contributions/examples/brew-pull.rb
index d96811b6f..34fb0e4d3 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