2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2026-02-08 10:26:17 +00:00

nearly complete store logbook entries in separate JSON files

This commit is contained in:
2025-11-22 22:38:47 +02:00
parent 88833941b5
commit 0e6a3e457d
4 changed files with 45 additions and 30 deletions

View File

@@ -380,7 +380,7 @@ def git_add(filename, cwd, commands=[]):
f"CANNOT git ADD on server for this file {filename}.\n\n" + msgdata
)
print(f"git add {filename} in {cwd}")
# print(f"git add {filename} in {cwd}")
cmd_add = [git, "add", filename]
commands.append(cmd_add)
cp_add = subprocess.run(cmd_add, cwd=cwd, capture_output=True, text=True)