aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/deps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb
index f41221fba..faeed5a47 100644
--- a/Library/Homebrew/cmd/deps.rb
+++ b/Library/Homebrew/cmd/deps.rb
@@ -21,7 +21,7 @@ module Homebrew extend self
puts_deps_tree ARGV.formulae
else
raise FormulaUnspecifiedError if ARGV.named.empty?
- all_deps = deps_for_formulae(ARGV.formulae, ARGV.one?)
+ all_deps = deps_for_formulae(ARGV.formulae, !ARGV.one?)
all_deps.sort! unless mode.topo_order?
puts all_deps
end