mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Add special handling for command not found errors
Signed-off-by: Claire Wolf <clifford@clifford.at>
This commit is contained in:
parent
c5dfa320df
commit
a5fce77344
|
@ -167,6 +167,13 @@ class SbyTask:
|
|||
all_tasks_running.remove(self)
|
||||
self.running = False
|
||||
|
||||
if self.p.returncode == 127:
|
||||
self.job.status = "ERROR"
|
||||
self.job.log("%s: COMMAND NOT FOUND. ERROR." % self.info)
|
||||
self.terminated = True
|
||||
self.job.terminate()
|
||||
return
|
||||
|
||||
self.handle_exit(self.p.returncode)
|
||||
|
||||
if self.checkretcode and self.p.returncode != 0:
|
||||
|
|
Loading…
Reference in a new issue