From 43cd8fe0d5a7246eafd0be1a883a3d51ffeb1434 Mon Sep 17 00:00:00 2001 From: Gabriel Freitas Date: Wed, 18 Jun 2025 14:44:29 -0300 Subject: [PATCH] Fix typo again --- .github/scripts/update_mod_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/update_mod_versions.py b/.github/scripts/update_mod_versions.py index 13044181..251c5f14 100755 --- a/.github/scripts/update_mod_versions.py +++ b/.github/scripts/update_mod_versions.py @@ -239,7 +239,7 @@ def process_mod(start_timestamp, name, meta_file): if "/archive/refs/tags/" in download_url: meta['downloadURL'] = f"{repo_url}/archive/refs/tags/{meta['version']}.zip" elif source == VersionSource.SPECIFIC_TAG: - meta['downloadUrl'] = f"{repo_url}/releases/download/{tag_data['name']}/{tag_data['file']}" + meta['downloadURL'] = f"{repo_url}/releases/download/{tag_data['name']}/{tag_data['file']}" with open(meta_file, 'w', encoding='utf-8') as f: # Preserve formatting with indentation