Skip to content

Commit

Permalink
check that 6.12 kernel are marked as 'longterm' again (#88)
Browse files Browse the repository at this point in the history
Reverting a temporary change for the time before 6.12 was lts officially.
  • Loading branch information
fwilhe authored Feb 27, 2025
1 parent 4a88275 commit 95d3610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update-kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_latest_kernel_version():
r["version"]
for r in releases
if r["version"].startswith(current_lts)
# not officially lts yet and r["moniker"] == "longterm"
and r["moniker"] == "longterm"
and r["iseol"] == False
]
assert len(latest_current_lts) == 1
Expand Down

0 comments on commit 95d3610

Please sign in to comment.