version update
[4Free-FSE.git] / build.py
blobcc59a16e1b5c9dc70bb8a41340609f74bbe2cfe1
1 import os
3 os.system('tsc -v')
4 print("Enter to start build loop...")
5 input()
6 loops = 0
7 while True:
8 os.system('tsc --project tsconfig.json')
9 print("fin\nEnter to loop #" + str(loops) + "...")
10 loops += 1
11 input()