From a4e10d9e1cd3988da9103ee4c7e8aa5b3ba6d8f6 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Mon, 3 Jun 2024 10:49:23 +0200 Subject: [PATCH] GH-17413: Add `--scrub` flag alias to cleanup command --- Library/Homebrew/cmd/cleanup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/cleanup.rb b/Library/Homebrew/cmd/cleanup.rb index 6960f61725278..4430137479c72 100644 --- a/Library/Homebrew/cmd/cleanup.rb +++ b/Library/Homebrew/cmd/cleanup.rb @@ -20,7 +20,7 @@ class CleanupCmd < AbstractCommand "If you want to remove everything, use `--prune=all`." switch "-n", "--dry-run", description: "Show what would be removed, but do not actually remove anything." - switch "-s", + switch "-s", "--scrub", description: "Scrub the cache, including downloads for even the latest versions. " \ "Note that downloads for any installed formulae or casks will still not be deleted. " \ "If you want to delete those too: `rm -rf \"$(brew --cache)\"`"