nvidia_tesla.py: Fix OS detection typo

This commit is contained in:
Mykola Grymalyuk
2024-09-15 10:15:16 -06:00
parent 38657fb1c6
commit 4246f91289
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@
## 2.1.0 ## 2.1.0
- Fix MacBookPro13,3 listing 'Available patches' after having installed all applicable patches - Fix MacBookPro13,3 listing 'Available patches' after having installed all applicable patches
- Fix Nvidia Tesla patches not installing on Monterey and older
## 2.0.0 ## 2.0.0
- Set `AssociatedBundleIdentifiers` property in launch services as an array - Set `AssociatedBundleIdentifiers` property in launch services as an array
@@ -43,7 +43,7 @@ class NvidiaTesla(BaseHardware):
""" """
Dropped support with macOS 10.14, Mojave Dropped support with macOS 10.14, Mojave
""" """
return self._xnu_major < os_data.ventura.value return self._xnu_major < os_data.mojave.value
def hardware_variant(self) -> HardwareVariant: def hardware_variant(self) -> HardwareVariant: