Skip to content

Commit

Permalink
extension: Support multiple manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickelectric committed Nov 14, 2024
1 parent 68a4b3d commit 9730cf6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion blueos_repository/extension/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ async def __extract_valid_embedded_digest(self, fetch: ManifestFetch) -> str:
# Manifest list
valid_manifests = [entry for entry in fetch.manifest.manifests if self.__is_compatible(entry.platform)]
if len(valid_manifests) != 1:
raise RuntimeError(
Logger.warning(
self.identifier,
f"Expected one valid manifest for target embedded arch but found: {len(valid_manifests)}"
)

Expand Down

0 comments on commit 9730cf6

Please sign in to comment.