aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorCharlie Sharpsteen2011-11-16 10:43:44 -0800
committerCharlie Sharpsteen2011-11-16 10:43:44 -0800
commit6c4d3a15d60d8f77f9b3280e93ec4eb0c6b10f8e (patch)
treef53735692be9e22755e3b7603a0d301ff3a0d44d /Library
parenteefbf00963c28ba1a80d9f1f5c26eb46f02229e6 (diff)
downloadbrew-6c4d3a15d60d8f77f9b3280e93ec4eb0c6b10f8e.tar.bz2
Don't include receipt in `brew list` output
Fixes Homebrew/homebrew#8615.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/list.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/list.rb b/Library/Homebrew/cmd/list.rb
index d985b543d..9e518685f 100644
--- a/Library/Homebrew/cmd/list.rb
+++ b/Library/Homebrew/cmd/list.rb
@@ -43,7 +43,7 @@ class PrettyListing
else
print_dir pn
end
- elsif not (FORMULA_META_FILES + ['.DS_Store']).include? pn.basename.to_s
+ elsif not (FORMULA_META_FILES + %w[.DS_Store INSTALL_RECEIPT.json]).include? pn.basename.to_s
puts pn
end
end