Fix GDK download url

[sdl-ci-filter msvc-gdk-x64]
This commit is contained in:
Anonymous Maarten
2026-08-21 01:29:21 +02:00
parent f170b33f16
commit 9901fa42d4

View File

@@ -34,7 +34,7 @@ class GdDesktopConfigurator:
self._vs_toolset = vs_toolset
def download_archive(self) -> None:
gdk_url = f"https://github.com/microsoft/GDK/releases/downloads/{ GIT_REF }/{ ARCHIVE_NAME }.zip"
gdk_url = f"https://github.com/microsoft/GDK/releases/download/{ GIT_REF }/{ ARCHIVE_NAME }.zip"
logger.info("Downloading %s to %s", gdk_url, self.dl_archive_path)
urllib.request.urlretrieve(gdk_url, self.dl_archive_path)
assert self.dl_archive_path.is_file()