add --ci switch to make.py

to signal the end of the process to an automated build
This commit is contained in:
bux578 2016-02-16 13:14:28 +01:00
parent d88f10b8e0
commit dacb5e1748

View File

@ -1432,4 +1432,8 @@ if __name__ == "__main__":
main(sys.argv)
d,h,m,s = Fract_Sec(timeit.default_timer() - start_time)
print("\nTotal Program time elapsed: {0:2}h {1:2}m {2:4.5f}s".format(h,m,s))
if "--ci" in sys.argv:
sys.exit(0)
input("Press Enter to continue...")