diff options
| author | Jack Nagel | 2014-08-30 15:02:38 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-30 15:02:47 -0500 |
| commit | 7bfb12aa4565cb0c4a7edbdda1cbd267f10d2a20 (patch) | |
| tree | b7e29e52329f294481353e5ac99a6023bada693b /Library/Homebrew/cmd/install.rb | |
| parent | 73956a1b77af135600888750148cc303b2d999f1 (diff) | |
| download | brew-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.rb | 2 |
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? |
