Overview
| Comment: | [build] useless conditions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | build |
| Files: | files | file ages | folders |
| SHA3-256: |
c4e9c97a0e66967165462b4b4570aed1 |
| User & Date: | olr on 2017-05-01 10:46:23 |
| Other Links: | manifest | tags |
Context
|
2017-05-03
| ||
| 08:00 | [build] check if rules have same id check-in: 0dba21491a user: olr tags: trunk, build | |
|
2017-05-01
| ||
| 10:46 | [build] useless conditions check-in: c4e9c97a0e user: olr tags: trunk, build | |
| 09:35 | [build] include tests in Python package check-in: a80c085797 user: olr tags: trunk, build | |
Changes
Modified make.py from [9a1c31726d] to [eeb66bd446].
| ︙ | |||
366 367 368 369 370 371 372 | 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | - + |
spLangPack = "grammalecte/"+sLang
createCleanFolder(spLangPack)
for sf in os.listdir("gc_core/py/lang_core"):
if not os.path.isdir("gc_core/py/lang_core/"+sf):
copyAndFileTemplate("gc_core/py/lang_core/"+sf, spLangPack+"/"+sf, dVars)
print("+ Modules: ", end="")
for sf in os.listdir(spLang+"/modules"):
|
| ︙ | |||
413 414 415 416 417 418 419 | 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | - + |
copyAndFileTemplate("gc_core/js/"+sf, "grammalecte-js/"+sf, dVars)
open("grammalecte-js/WARNING.txt", "w", encoding="utf-8", newline="\n").write(sWarningMessage)
for sf in os.listdir("gc_core/js/lang_core"):
if not os.path.isdir("gc_core/js/lang_core/"+sf) and sf.startswith("gc_"):
copyAndFileTemplate("gc_core/js/lang_core/"+sf, spLangPack+"/"+sf, dVars)
print("+ Modules: ", end="")
for sf in os.listdir(spLang+"/modules-js"):
|
| ︙ |