Merge pull request #18977 from Homebrew/clt-message

formula: update `pour_bottle?` CLT error message
This commit is contained in:
Mike McQuaid 2024-12-23 16:58:37 +00:00 committed by GitHub
commit 9f48c5d40b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4286,9 +4286,11 @@ class Formula
lambda do |_| lambda do |_|
on_macos do on_macos do
T.bind(self, PourBottleCheck) T.bind(self, PourBottleCheck)
reason(+<<~EOS) reason(<<~EOS)
The bottle needs the Apple Command Line Tools to be installed. The bottle needs the Xcode Command Line Tools to be installed at /Library/Developer/CommandLineTools.
You can install them, if desired, with: Development tools provided by Xcode.app are not sufficient.
You can install the Xcode Command Line Tools, if desired, with:
xcode-select --install xcode-select --install
EOS EOS
satisfy { MacOS::CLT.installed? } satisfy { MacOS::CLT.installed? }