tooling: add -A isntead of *

This commit is contained in:
Mark Joshwel 2024-07-29 21:56:11 +08:00
parent 70a0e0246a
commit 670d7b5fce

View file

@ -571,7 +571,7 @@ def main() -> None:
)
def add_and_commit() -> CompletedProcess:
cp = cmd("git add *")()
cp = cmd("git add -A")()
if cp.returncode != 0:
return cp
return cmd(