We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c500b9 + 7f9e23e commit 64318baCopy full SHA for 64318ba
RAMP/unpacker.py
@@ -105,11 +105,10 @@ def _validate_metadata(metadata):
105
reason="Empty module file name",
106
error_code="module_file_missing")
107
108
- if metadata["architecture"] != 'x86_64':
+ if metadata["architecture"] not in {"x86_64", "arm64v8"}:
109
raise UnpackerPackageError(message=INVALID_METADATA,
110
reason="Architecture must be 64 bits",
111
- error_code="module_architecture_not_supported",
112
- error_details={'expected': 'x86_64'})
+ error_code="module_architecture_not_supported")
113
114
if not metadata["version"]:
115
0 commit comments