Skip to content

Commit

Permalink
fix a typo in comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
linostar committed Nov 14, 2024
1 parent b4423a5 commit 4d1fae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/generate_oci_doc_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def build_releases_data(
eol = parser.parse(all_tracks[track_base])
release_data["support"] = {"until": eol.strftime("%m/%Y")}

if eol > datetime.now(timezone.utc):
if eol < datetime.now(timezone.utc):
release_data["deprecated"] = {
"date": eol.strftime("%m/%Y")
}
Expand Down

0 comments on commit 4d1fae1

Please sign in to comment.