mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 21:21:23 +08:00
14 lines
369 B
Python
14 lines
369 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
sys.path.append('../../../../build_tools/scripts')
|
|
import config
|
|
import base
|
|
import os
|
|
import build
|
|
|
|
if not base.is_dir("gumbo-parser"):
|
|
base.cmd("git", ["clone", "https://github.com/google/gumbo-parser.git"])
|
|
|
|
if not base.is_dir("katana-parser"):
|
|
base.cmd("git", ["clone", "https://github.com/hackers-painters/katana-parser.git"]) |