aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2009-06-08 15:59:12 +0100
committerMax Howell2009-06-08 15:59:12 +0100
commit25c2f54ccfbb6d0cc7e12d7b02fb79cab2b29a1e (patch)
treec8ace9a4a6d67b4925ca9bf49d2868e2b990ab07
parenta2c723e32663798860f205f5c9f001f3b4606470 (diff)
downloadbrew-25c2f54ccfbb6d0cc7e12d7b02fb79cab2b29a1e.tar.bz2
brew list only lists files not directories
-rwxr-xr-xbin/brew2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brew b/bin/brew
index 38cdee938..a2184eec0 100755
--- a/bin/brew
+++ b/bin/brew
@@ -207,7 +207,7 @@ begin
puts HOMEBREW_VERSION
when 'list'
fae=shift_formulae_from_ARGV.collect {|name| ($cellar+name).to_s}
- puts `find #{fae.join' '}`
+ puts `find #{fae.join' '} -type f -print`
when 'install'
shift_formulae_from_ARGV.each do |name|
beginning = Time.now