update packages

This commit is contained in:
2025-03-11 21:14:26 +01:00
parent 45d49daef0
commit 14dcaaddde
440 changed files with 13229 additions and 8718 deletions

View File

@@ -2,7 +2,8 @@ from subprocess import Popen, PIPE
from os.path import exists
import sys
GIT_CMD = "git clean -ndX"
GIT_BIN = sys.argv[1]
GIT_CMD = "{} clean -ndX".format(GIT_BIN)
STDOUT = sys.stdout.buffer
def quote(string):
@@ -31,7 +32,7 @@ def process_git_output(root, proc):
break
def main():
roots = sys.argv[1:]
roots = sys.argv[2:]
procs = []
for root in roots: