We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 62a3c80 + d4e2f55 commit ca2c432Copy full SHA for ca2c432
pkg/limayaml/defaults.go
@@ -1195,7 +1195,7 @@ func HasHostCPU() bool {
1195
case "darwin":
1196
if hasSMEDarwin() {
1197
macOSProductVersion, err := osutil.ProductVersion()
1198
- if err != nil || macOSProductVersion.Equal(*semver.New("15.2")) {
+ if err != nil || (macOSProductVersion.Major == 15 && macOSProductVersion.Minor == 2) {
1199
// SME is available since Apple M4 running macOS 15.2, but it was broken on macOS 15.2.
1200
// It has been fixed in 15.3.
1201
//
0 commit comments