Skip to content

Commit

Permalink
Manifest v9 is identical to v8, per coworker
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed Jan 9, 2025
1 parent 29f0fa8 commit 2623e7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bikeshed/update/updateWpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ def update(path: str, dryRun: bool = False) -> set[str] | None:
m.die("Can't figure out the WPT data version. Please report this to the maintainer!")
return None

if jsonData["version"] != 8:
if jsonData["version"] not in (8, 9):
m.die(
f"Bikeshed currently only knows how to handle WPT v8 manifest data, but got v{jsonData['version']}. Please report this to the maintainer!",
f"Bikeshed currently only knows how to handle WPT v8 or v9 manifest data, but got v{jsonData['version']}. Please report this to the maintainer!",
)
return None

Expand Down

0 comments on commit 2623e7a

Please sign in to comment.