mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Tools - Set non zero exit code if any addons fail to build (#7937)
This commit is contained in:
parent
e53bc23ebf
commit
4e83b387e5
@ -1499,6 +1499,9 @@ if __name__ == "__main__":
|
||||
print("\nTotal Program time elapsed: {0:2}h {1:2}m {2:4.5f}s".format(h,m,s))
|
||||
|
||||
if ciBuild:
|
||||
if len(failedBuilds) > 0:
|
||||
sys.exit(1)
|
||||
else:
|
||||
sys.exit(0)
|
||||
|
||||
input("Press Enter to continue...")
|
||||
|
Loading…
Reference in New Issue
Block a user