update packages and add valign

This commit is contained in:
2026-04-05 20:00:27 +02:00
parent b062fb98e3
commit 03fb00e374
640 changed files with 109768 additions and 39311 deletions

View File

@@ -1,11 +1,13 @@
from subprocess import Popen, PIPE
import sys
from os import environ
GIT_BIN = sys.argv[1]
STATUS_CMD = "{} status -sb".format(GIT_BIN)
def main():
proc = Popen(STATUS_CMD, shell=True, stdout=PIPE, bufsize=100, env={"LC_ALL": "C"})
environ["LC_ALL"] = "C"
proc = Popen(STATUS_CMD, shell=True, stdout=PIPE, bufsize=100)
if (proc.wait() != 0):
sys.exit(2)