From e7477cfe5c60ea57312ece8c26613273244f319c Mon Sep 17 00:00:00 2001 From: Rasmus Anthin Date: Mon, 9 Dec 2024 08:26:10 +0100 Subject: [PATCH] fetch-dependencies.py: * Undoing making os optional. Not sure why I get 3rdparty_OpenAL on linmac, shouldn't be possible, but happens anywways. --- fetch-dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch-dependencies.py b/fetch-dependencies.py index 4b4a58f..c3fbc0d 100755 --- a/fetch-dependencies.py +++ b/fetch-dependencies.py @@ -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)