From 30b930f18a18cc09e6ae08358fb63d8e3094968a Mon Sep 17 00:00:00 2001 From: Floke Date: Mon, 9 Mar 2026 03:21:13 +0000 Subject: [PATCH] [31e88f42] Move weekly summaries to 'weekly/' directory and update script paths --- scripts/generate_weekly_summary.py | 4 ++-- .../Executive_Weekly_Summary_2026-03-09.md | 0 LATEST_WEEKLY_SUMMARY.md => weekly/LATEST_WEEKLY_SUMMARY.md | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Executive_Weekly_Summary_2026-03-09.md => weekly/Executive_Weekly_Summary_2026-03-09.md (100%) rename LATEST_WEEKLY_SUMMARY.md => weekly/LATEST_WEEKLY_SUMMARY.md (100%) diff --git a/scripts/generate_weekly_summary.py b/scripts/generate_weekly_summary.py index b374d624..c17e76b4 100644 --- a/scripts/generate_weekly_summary.py +++ b/scripts/generate_weekly_summary.py @@ -316,7 +316,7 @@ def main(): report_content = "\n".join(report_lines) output_filename = f"Executive_Weekly_Summary_{now.strftime('%Y-%m-%d')}.md" - output_path = os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')), output_filename) + output_path = os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')), 'weekly', output_filename) with open(output_path, "w", encoding="utf-8") as f: f.write(report_content) @@ -324,7 +324,7 @@ def main(): print(f"✅ Executive Weekly Summary erfolgreich generiert: {output_path}") # Update latest summary shortcut - shortcut_path = os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')), 'LATEST_WEEKLY_SUMMARY.md') + shortcut_path = os.path.join(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')), 'weekly', 'LATEST_WEEKLY_SUMMARY.md') with open(shortcut_path, "w", encoding="utf-8") as f: f.write(report_content) diff --git a/Executive_Weekly_Summary_2026-03-09.md b/weekly/Executive_Weekly_Summary_2026-03-09.md similarity index 100% rename from Executive_Weekly_Summary_2026-03-09.md rename to weekly/Executive_Weekly_Summary_2026-03-09.md diff --git a/LATEST_WEEKLY_SUMMARY.md b/weekly/LATEST_WEEKLY_SUMMARY.md similarity index 100% rename from LATEST_WEEKLY_SUMMARY.md rename to weekly/LATEST_WEEKLY_SUMMARY.md