mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
add --ci switch to make.py
to signal the end of the process to an automated build
This commit is contained in:
@ -1432,4 +1432,8 @@ if __name__ == "__main__":
|
|||||||
main(sys.argv)
|
main(sys.argv)
|
||||||
d,h,m,s = Fract_Sec(timeit.default_timer() - start_time)
|
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))
|
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...")
|
input("Press Enter to continue...")
|
||||||
|
Reference in New Issue
Block a user