aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorJack Nagel2014-03-13 10:11:00 -0500
committerJack Nagel2014-03-13 15:59:54 -0500
commit22c466b76c3c85eb4f5d0207b2f79442a4d4f1ec (patch)
treed4f834b1784b1686a6b24971de81ad49de75bce2 /Library/Homebrew/cmd/install.rb
parent91c7fa1d785b6f67cac749a24932ea0571adfa54 (diff)
downloadhomebrew-22c466b76c3c85eb4f5d0207b2f79442a4d4f1ec.tar.bz2
Make FormulaInstaller setup more readable
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb22
1 files changed, 11 insertions, 11 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index 2b1c577f0..a3d7b6452 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -104,17 +104,17 @@ module Homebrew extend self
def install_formula f
fi = FormulaInstaller.new(f)
- fi.options = f.build.used_options
- fi.ignore_deps = ARGV.ignore_deps? || ARGV.interactive?
- fi.only_deps = ARGV.only_deps?
- fi.build_bottle = ARGV.build_bottle?
- fi.build_from_source = ARGV.build_from_source?
- fi.force_bottle = ARGV.force_bottle?
- fi.interactive = ARGV.interactive?
- fi.interactive &&= :git if ARGV.flag? "--git"
- fi.verbose = ARGV.verbose?
- fi.verbose &&= :quieter if ARGV.quieter?
- fi.debug = ARGV.debug?
+ fi.options = f.build.used_options
+ fi.ignore_deps = ARGV.ignore_deps? || ARGV.interactive?
+ fi.only_deps = ARGV.only_deps?
+ fi.build_bottle = ARGV.build_bottle?
+ fi.build_from_source = ARGV.build_from_source?
+ fi.force_bottle = ARGV.force_bottle?
+ fi.interactive = ARGV.interactive?
+ fi.interactive &&= :git if ARGV.flag? "--git"
+ fi.verbose = ARGV.verbose?
+ fi.verbose &&= :quieter if ARGV.quieter?
+ fi.debug = ARGV.debug?
fi.prelude
fi.install
fi.caveats