diff options
| -rw-r--r-- | Library/Homebrew/cmd/cleanup-installed.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/cleanup-installed.rb b/Library/Homebrew/cmd/cleanup-installed.rb index b79a380c1..9c54a772f 100644 --- a/Library/Homebrew/cmd/cleanup-installed.rb +++ b/Library/Homebrew/cmd/cleanup-installed.rb @@ -15,6 +15,6 @@ module Homebrew current_formulae = `brew list`.lines.map(&:strip) uninstall_formulae = current_formulae - kept_formulae return if uninstall_formulae.empty? - safe_system "brew", "uninstall", *uninstall_formulae + safe_system "brew", "uninstall", "--force", *uninstall_formulae end end |
