Skip to content

Commit

Permalink
fix: Update gen_v4_x64_releases
Browse files Browse the repository at this point in the history
  • Loading branch information
haruki7049 committed Jul 17, 2024
1 parent 42a893e commit bbea94a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fetch-releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@ def gen_v4_x64_releases(versions: list, v4_x64_urls: list) -> list:

for version in versions:
for url in v4_x64_urls:
if version in url and "mono_linux.x86_64" in url:
if version in url and "mono_linux_x86_64" in url:
result.append(url)

return result


if __name__ == "__main__":
owner: str = "godotengine"
Expand Down

0 comments on commit bbea94a

Please sign in to comment.