Skip to content

Commit

Permalink
fetch-dependencies.py:
Browse files Browse the repository at this point in the history
* Undoing making os optional. Not sure why I get 3rdparty_OpenAL on linmac, shouldn't be possible, but happens anywways.
  • Loading branch information
razterizer committed Dec 9, 2024
1 parent 52afc52 commit e7477cf
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 e7477cf

Please sign in to comment.