mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-02-10 20:45:38 +08:00
20 lines
337 B
Python
20 lines
337 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
sys.path.append('../..')
|
|
import config
|
|
import base
|
|
import os
|
|
import subprocess
|
|
|
|
def make():
|
|
print("[fetch]: md")
|
|
|
|
base_dir = base.get_script_dir() + "/../../core/Common/3dParty/md"
|
|
|
|
base.cmd_in_dir(base_dir, "python", ["fetch.py"])
|
|
return
|
|
|
|
if __name__ == '__main__':
|
|
# manual compile
|
|
make() |