3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Fix sby execution on Windows

This commit is contained in:
Miodrag Milanovic 2019-11-17 16:58:35 +01:00
parent 23f89011b6
commit 196c3c779a

View file

@ -242,6 +242,7 @@ class SbyJob:
if task.running:
fds.append(task.p.stdout)
if os.name == "posix":
try:
select(fds, [], [], 1.0) == ([], [], [])
except InterruptedError: