Skip to content

Commit

Permalink
macos: Require macOS 12
Browse files Browse the repository at this point in the history
macOS 14 has been released recently, macOS 11 is likely to become
unsupported soon. This commit officially drops support for macOS 11.
  • Loading branch information
cfergeau authored and praveenkumar committed Nov 16, 2023
1 parent 905141e commit c84ca01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To assign more resources to the {prod} instance, see link:{crc-gsg-url}#configur

=== Requirements on {mac}

* On {mac}, {prod} requires {mac} 11 Big Sur or later.
* On {mac}, {prod} requires {mac} 12 Monterey or later.
{prod} does not work on earlier versions of {mac}.

=== Requirements on Linux
Expand Down
4 changes: 2 additions & 2 deletions packaging/darwin/Distribution.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ function installCheck() {
return false;
}

if(!(system.compareVersions(system.version.ProductVersion, '11.0.0') >= 0)) {
if(!(system.compareVersions(system.version.ProductVersion, '12.0.0') >= 0)) {
my.result.title = 'Unable to install';
my.result.message = 'Red Hat OpenShift Local requires macOS 11 or later.';
my.result.message = 'Red Hat OpenShift Local requires macOS 12 or later.';
my.result.type = 'Fatal';
return false;
}
Expand Down

0 comments on commit c84ca01

Please sign in to comment.