Skip to content

Commit

Permalink
fetch-dependencies.py:
Browse files Browse the repository at this point in the history
* Making os optional.
  • Loading branch information
razterizer committed Dec 9, 2024
1 parent ca48ce6 commit 52afc52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetch-dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def parse_dependencies(f) -> Iterator[Dependency]:
match d:
case [] | ['#', *_]:
pass
case [path, repo, ref, os]:
case [path, repo, ref, *os]:
yield Dependency(Path(path), repo, ref, os)
case _:
print(f'Error in dependencies file. I do not understand line {i}.', file=sys.stderr)
Expand Down

0 comments on commit 52afc52

Please sign in to comment.