make assets iterable

master
Beq 2024-09-16 20:02:56 +01:00
parent 93b7e0b2c3
commit a6e363a450
1 changed files with 2 additions and 2 deletions

View File

@ -286,13 +286,13 @@ def gather_build_info(build_type, config):
if "downloadable_artifacts" not in build_type: if "downloadable_artifacts" not in build_type:
build_type["downloadable_artifacts"] = {} build_type["downloadable_artifacts"] = {}
build_type["downloadable_artifacts"] = { f"{file_key}":{ build_type["downloadable_artifacts"][f"{file_key}"] = {
"file_path": full_file, "file_path": full_file,
"file_download_URI": file_URI, "file_download_URI": file_URI,
"grid": grid, "grid": grid,
"fs_ver_mgr_platform": config.fs_version_mgr_platform.get(platform_folder), "fs_ver_mgr_platform": config.fs_version_mgr_platform.get(platform_folder),
"md5": md5, "md5": md5,
}} }
except TypeError: except TypeError:
print(f"Error processing files for {platform_folder} in {build_type_dir}") print(f"Error processing files for {platform_folder} in {build_type_dir}")