diff options
| author | Jack Nagel | 2014-08-30 15:02:38 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-08-30 15:02:47 -0500 | 
| commit | 46f04a61b16caa0dd28c412fbb44a5b580e75849 (patch) | |
| tree | d65bbaaeecfebb3e66860dbcd22cf32deba7e3b6 /Library/Homebrew/cmd/install.rb | |
| parent | 43a49a26eb124a58681b90b7e211686dbbc3e02d (diff) | |
| download | homebrew-46f04a61b16caa0dd28c412fbb44a5b580e75849.tar.bz2 | |
Install dependencies before an interactive install
Closes #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? | 
