aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-03-08 19:08:47 -0600
committerJack Nagel2014-03-08 19:08:47 -0600
commit3c9a197761423d57d2408f61cd27bf44820b4528 (patch)
tree9ca63d4efdc9614c0274728b6331a81d9691d3b4 /Library
parent5cbabc7cb5bc8af8658c39a3d84986a725d702c6 (diff)
downloadhomebrew-3c9a197761423d57d2408f61cd27bf44820b4528.tar.bz2
Don't remove --only-dependencies since it is meaningless
When only_deps is true, this method is never called.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_installer.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 096e1509e..d341094f8 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -389,7 +389,6 @@ class FormulaInstaller
def sanitized_ARGV_options
args = ARGV.options_only
args.delete "--ignore-dependencies" unless ignore_deps
- args.delete "--only-dependencies" unless only_deps
args
end