From 5e56b9effe62b9d78b831d3dd3dff680fd97bb2b Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Thu, 21 Jul 2022 11:51:21 -0400 Subject: [PATCH] Drops "cannot be retapped" from manual untap warning Co-authored-by: Mike McQuaid --- Library/Homebrew/brew.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/brew.rb b/Library/Homebrew/brew.rb index 42911fa9a4..cfb09f5353 100644 --- a/Library/Homebrew/brew.rb +++ b/Library/Homebrew/brew.rb @@ -107,7 +107,7 @@ begin blocked_tap = possible_tap && Tap.untapped_official_taps.include?(possible_tap.name) if blocked_tap [ - "`brew #{cmd}` is unavailable because #{possible_tap.name} was manually untapped and cannot be retapped.", + "`brew #{cmd}` is unavailable because #{possible_tap.name} was manually untapped.", "Run `brew tap #{possible_tap.name}` to reenable `brew #{cmd}`.", ].each { |ln| onoe ln } end