mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 01:51:22 +01:00
8 lines
197 B
Python
Executable File
8 lines
197 B
Python
Executable File
#!/usr/bin/python3
|
|
import os
|
|
import sys
|
|
if sys.platform == 'win32':
|
|
pybabel = 'flask\\Scripts\\pybabel'
|
|
else:
|
|
pybabel = 'pybabel'
|
|
os.system(pybabel + ' compile -d titanembeds/translations') |