mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 06:36:24 +00:00
Fix compilation order reversed
This commit is contained in:
parent
abdc149f65
commit
56a30a014c
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -305,7 +305,7 @@ def parallel_run(todo, desc='Compiling {} ...'):
|
|||
num_workers = max(1, cpu_count())
|
||||
except Exception:
|
||||
num_workers = 2
|
||||
items = list(todo.items())
|
||||
items = list(reversed(tuple(todo.items())))
|
||||
workers = {}
|
||||
failed = None
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue