From 09a243330b8ee234c9383da17f18555437faf6da Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 4 Apr 2023 19:15:04 +0200 Subject: [PATCH] autoupdate app sources: fix asset url for latest tag strategy --- tools/autoupdate_app_sources/autoupdate_app_sources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/autoupdate_app_sources/autoupdate_app_sources.py b/tools/autoupdate_app_sources/autoupdate_app_sources.py index 8e543a41..03139d12 100644 --- a/tools/autoupdate_app_sources/autoupdate_app_sources.py +++ b/tools/autoupdate_app_sources/autoupdate_app_sources.py @@ -326,7 +326,7 @@ class AppAutoUpdater: latest_version_orig, latest_version = filter_and_get_latest_tag( [t["name"] for t in tags], self.app_id ) - latest_tarball = f"{upstream}/archive/refs/tags/{latest_version}.tar.gz" + latest_tarball = f"{upstream}/archive/refs/tags/{latest_version_orig}.tar.gz" return latest_version, latest_tarball elif strategy == "latest_github_commit":