From bb5166b3c77f86120567c5a56b1606c92abba390 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 6 Sep 2018 11:48:13 +0100 Subject: [PATCH] os/mac: also update install on version bumps. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I also just remembered this today so let’s add a comment reminder. --- Library/Homebrew/os/mac.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 0f2b8ae060..e2b85330e1 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -36,13 +36,15 @@ module OS def latest_stable_version # TODO: bump version when new macOS is released and also update - # references in docs/Installation.md + # references in docs/Installation.md and + # https://github.com/Homebrew/install/blob/master/install Version.new "10.13" end def outdated_release? # TODO: bump version when new macOS is released and also update - # references in docs/Installation.md + # references in docs/Installation.md and + # https://github.com/Homebrew/install/blob/master/install version < "10.11" end