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