From ea44760f8ce62ea2c190d0a8b632c3783bbc3ba9 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 2 Dec 2019 13:25:43 +0000 Subject: [PATCH] os/mac/xcode: add additional CLT download link. Sadly Apple don't seem to be providing these reliably. Fixes #6796 --- Library/Homebrew/os/mac/xcode.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index ac656eeee7870..355cfd99268de 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -231,11 +231,13 @@ def sdk_path(v = nil) def update_instructions if MacOS.version >= "10.14" <<~EOS - Update them from Software Update in System Preferences. + Update them from Software Update in System Preferences or + #{Formatter.url("https://developer.apple.com/download/more/")}. EOS else <<~EOS - Update them from Software Update in the App Store. + Update them from Software Update in the App Store + #{Formatter.url("https://developer.apple.com/download/more/")}. EOS end end