Delete maadeps-build.py

This commit is contained in:
MistEO
2023-06-20 20:57:15 +08:00
committed by GitHub
parent e76a8cb7e0
commit 528b4a63d5

View File

@@ -1,15 +0,0 @@
import sys
import os
from pathlib import Path
import subprocess
basedir = Path(__file__).parent
def main():
os.chdir(basedir)
subprocess.check_call(["git", "submodule", "update", "--init", "--recommend-shallow", "--remote", "MaaDeps"])
ret = subprocess.call([sys.executable, "build.py", *sys.argv[1:]], cwd=Path(basedir, "MaaDeps"))
sys.exit(ret)
if __name__ == '__main__':
main()