Skip to content

Commit

Permalink
sys_patch_dict.py: Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Mar 10, 2024
1 parent cdb40d8 commit e494906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/sys_patch_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ def _generate_sys_patch_dict(self):
},
"Install": {
"/System/Library/Extensions": {
"IOUSBHostFamily.kext": "12.6.2" if self.os_major < self.macOS_14_4 else "12.6.2-23.4",
"IOUSBHostFamily.kext": "12.6.2" if self.os_float < self.macOS_14_4 else "12.6.2-23.4",
},
},
},
Expand Down

0 comments on commit e494906

Please sign in to comment.