aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorAdam Vandenberg2011-06-15 09:02:18 -0700
committerAdam Vandenberg2011-06-15 09:02:18 -0700
commit0523f66bec11345fc31cc678a9bdc80607fdf3f9 (patch)
tree2e9adef0285eaa6dbb481bc2eef6236a16375e35 /Library/Homebrew/cmd
parenta656243377d58b753a4fe71755480ebcb9fa334b (diff)
downloadbrew-0523f66bec11345fc31cc678a9bdc80607fdf3f9.tar.bz2
deps: document -n switch
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/deps.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb
index dfacbd1be..eed04ae0f 100644
--- a/Library/Homebrew/cmd/deps.rb
+++ b/Library/Homebrew/cmd/deps.rb
@@ -4,8 +4,7 @@ module Homebrew extend self
def deps
if ARGV.include? '--all'
Formula.each do |f|
- # TODO add a space after the colon??
- puts "#{f.name}:#{f.deps*' '}"
+ puts "#{f.name}: #{f.deps*' '}"
end
else
all_deps = ARGV.formulae.map{ |f| ARGV.one? ? f.deps : f.recursive_deps }.intersection