aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-30 15:02:38 -0500
committerJack Nagel2014-08-30 15:02:47 -0500
commit7bfb12aa4565cb0c4a7edbdda1cbd267f10d2a20 (patch)
treeb7e29e52329f294481353e5ac99a6023bada693b /Library/Homebrew/cmd/install.rb
parent73956a1b77af135600888750148cc303b2d999f1 (diff)
downloadbrew-7bfb12aa4565cb0c4a7edbdda1cbd267f10d2a20.tar.bz2
Install dependencies before an interactive install
Closes Homebrew/homebrew#29121.
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index d0e65542e..c8e0e9e42 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -104,7 +104,7 @@ module Homebrew
def install_formula f
fi = FormulaInstaller.new(f)
fi.options = f.build.used_options
- fi.ignore_deps = ARGV.ignore_deps? || ARGV.interactive?
+ fi.ignore_deps = ARGV.ignore_deps?
fi.only_deps = ARGV.only_deps?
fi.build_bottle = ARGV.build_bottle?
fi.build_from_source = ARGV.build_from_source?