mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Add a status message when one or more tasks returned a non-zero return code, closes #78
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
3ec2b6b4e4
commit
c91efe15a3
|
@ -410,4 +410,8 @@ retcode = 0
|
|||
for t in tasknames:
|
||||
retcode |= run_job(t)
|
||||
|
||||
if retcode and (len(tasknames) > 1 or tasknames[0] is not None):
|
||||
tm = localtime()
|
||||
print("SBY {:2d}:{:02d}:{:02d} One or more tasks produced a non-zero return code.".format(tm.tm_hour, tm.tm_min, tm.tm_sec))
|
||||
|
||||
sys.exit(retcode)
|
||||
|
|
Loading…
Reference in a new issue