Skip to content

Commit 1784ed1

Browse files
authored
Fix updating from 3.11.2.5
1 parent 9f912a0 commit 1784ed1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codexctl/updates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def uses_new_update_engine(version: str) -> bool:
396396
Returns:
397397
bool: If it uses the new update engine or not
398398
"""
399-
return tuple([int(x) for x in version.split(".")]) > (3, 11, 2, 5)
399+
return tuple([int(x) for x in version.split(".")]) >= (3, 11, 2, 5)
400400

401401
@staticmethod
402402
def is_bootloader_boundary_downgrade(current_version: str, target_version: str) -> bool:

0 commit comments

Comments
 (0)