aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/cleanup.rb
diff options
context:
space:
mode:
authorJack Nagel2013-02-17 22:54:27 -0600
committerJack Nagel2013-02-18 12:13:35 -0600
commit33393a2597916d8e73009dd981dfcb07ea669434 (patch)
treef3f23f1cd206bcd212e66cbe4965121185b11e98 /Library/Homebrew/cmd/cleanup.rb
parent5a34e80675c6406d66569affc4732e2dc5f3b605 (diff)
downloadhomebrew-33393a2597916d8e73009dd981dfcb07ea669434.tar.bz2
Remove unused variables
Diffstat (limited to 'Library/Homebrew/cmd/cleanup.rb')
-rw-r--r--Library/Homebrew/cmd/cleanup.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/cleanup.rb b/Library/Homebrew/cmd/cleanup.rb
index 490065606..86607b2e2 100644
--- a/Library/Homebrew/cmd/cleanup.rb
+++ b/Library/Homebrew/cmd/cleanup.rb
@@ -11,7 +11,7 @@ module Homebrew extend self
HOMEBREW_CELLAR.children.each do |rack|
begin
cleanup_formula rack.basename.to_s if rack.directory?
- rescue FormulaUnavailableError => e
+ rescue FormulaUnavailableError
# Don't complain about Cellar folders that are from DIY installs
# instead of core formulae.
end