repo.or.cz
/
4Free-FSE.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Thread rebuilder detects all boards
[4Free-FSE.git]
/
build.py
blob
cc59a16e1b5c9dc70bb8a41340609f74bbe2cfe1
1
import
os
2
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
\n
Enter to loop #"
+
str
(
loops
) +
"..."
)
10
loops
+=
1
11
input
()