doocus update and meeting list export

This commit is contained in:
Mariano Gabriel
2026-07-05 11:15:57 -03:00
parent fa3a0e3d1a
commit 300806b936
17 changed files with 614 additions and 628 deletions

View File

@@ -51,6 +51,9 @@ def main() -> int:
f"{c['meeting']} meeting, {c['link']} linked"
+ (f", {c['warnings']} with warnings" if c.get("warnings") else "")
+ (" (dry run — nothing written)" if args.dry_run else ""))
if not args.dry_run and c["meeting"]:
print(f"{args.output}/meetings.txt lists the {c['meeting']} meeting path(s) "
f"for meetus: `ctrl/batch.sh -i <mount> -o {args.output} -l {args.output}/meetings.txt`")
return 0