Skip to content

Commit

Permalink
check is_version_mv3_compliant only on MV3 extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielBusta committed Jun 10, 2024
1 parent e845413 commit d8a8db8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskcluster/docker/node/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def check_manifest(path, buildid_version):
raise Exception(
f"{manifest['version']} doesn't match buildid version {buildid_version}!"
)
if not is_version_mv3_compliant(manifest["version"]):
if manifest["manifest_version"] == 3 and not is_version_mv3_compliant(manifest["version"]):
raise Exception(
(
f"The version in {manifest_name} is {manifest['version']}, which is not MV3 compliant. "
Expand Down

0 comments on commit d8a8db8

Please sign in to comment.