[31e88f42] Move weekly summaries to 'weekly/' directory and update script paths

This commit is contained in:
2026-03-09 03:21:13 +00:00
parent d589c8ff39
commit 30b930f18a
3 changed files with 2 additions and 2 deletions

View File

@@ -316,7 +316,7 @@ def main():
report_content = "\n".join(report_lines) report_content = "\n".join(report_lines)
output_filename = f"Executive_Weekly_Summary_{now.strftime('%Y-%m-%d')}.md" 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: with open(output_path, "w", encoding="utf-8") as f:
f.write(report_content) f.write(report_content)
@@ -324,7 +324,7 @@ def main():
print(f"✅ Executive Weekly Summary erfolgreich generiert: {output_path}") print(f"✅ Executive Weekly Summary erfolgreich generiert: {output_path}")
# Update latest summary shortcut # 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: with open(shortcut_path, "w", encoding="utf-8") as f:
f.write(report_content) f.write(report_content)