From 14629216ba4a95a451f6539ded23d07006e3f502 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 14 Sep 2022 12:32:26 +0100 Subject: [PATCH] diagnostic: improve cask quarantine messaging. I'm now getting "Unknown support status" on 12.6 and it's not obvious at all what's outputting this and why. --- Library/Homebrew/diagnostic.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb index 178b346167..11149ca2b9 100644 --- a/Library/Homebrew/diagnostic.rb +++ b/Library/Homebrew/diagnostic.rb @@ -1049,11 +1049,11 @@ module Homebrew when :quarantine_available nil when :xattr_broken - "There's no working version of `xattr` on this system." + "No Cask quarantine support available: there's no working version of `xattr` on this system." when :no_swift - "Swift is not available on this system." + "No Cask quarantine support available: there's no available version of `swift` on this system." else - "Unknown support status" + "No Cask quarantine support available: unknown reason." end end