[rocpd] Write rocpd yaml files as a list, even when only 1 file (#2288)

This commit is contained in:
Young Hui - AMD
2025-12-22 17:56:59 -05:00
committato da GitHub
parent 447025011a
commit 37e3b8a3db
@@ -377,11 +377,7 @@ def create_metadata_file(db_files, output_path=".", metadata_filename="index.yam
rocpd_metadata_param_version: rocpd_package_version,
# "source": "rocprofv3", # omitting source, not sure why we need this, and how we determine the source as rocprof-sys, for example.
"path": ".",
"files": (
rel_paths
if len(rel_paths) > 1
else (rel_paths[0] if rel_paths else "")
),
"files": rel_paths,
}
}
}