Print error level if not 0.

This commit is contained in:
voussoir 2020-08-23 22:18:10 -07:00
parent 2fc55ee330
commit 57e56f3f02

View file

@ -217,6 +217,7 @@ def run_script(script, dry=False):
else:
status = command()
if status not in [0, None]:
print('!!!! error status:', status)
break
return status