Fix data paths in update automation

- Fixed default data-dir in auto_update_and_learn.py (was pointing to old iCloud path)
- Updated run_update_and_learn.sh to explicitly pass correct data-dir
- Added missing Eurojackpot draw from 2026-01-13 (2-16-27-33-47 + 6-12)
- Now saves data to /Projekte/Eurojackpot/data instead of iCloud

This fixes the issue where updates ran successfully but saved to the wrong location.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-14 11:55:40 +01:00
co-authored by Claude Sonnet 4.5
parent ca003e44b7
commit 98a74ff2a7
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -915,3 +915,4 @@ datum;Z1;Z2;Z3;Z4;Z5;SZ1;SZ2
2026-01-02;10;15;29;34;38;2;9
2026-01-06;21;23;30;33;38;8;12
2026-01-09;1;17;19;25;41;6;12
2026-01-13;2;16;27;33;47;6;12
1 datum Z1 Z2 Z3 Z4 Z5 SZ1 SZ2
915 2026-01-02 10 15 29 34 38 2 9
916 2026-01-06 21 23 30 33 38 8 12
917 2026-01-09 1 17 19 25 41 6 12
918 2026-01-13 2 16 27 33 47 6 12
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/bash
cd "/Users/sebastianfrohlich/Projekte/Eurojackpot"
source venv/bin/activate
python scripts/automation/auto_update_and_learn.py
python scripts/automation/auto_update_and_learn.py --data-dir /Users/sebastianfrohlich/Projekte/Eurojackpot/data
+1 -1
View File
@@ -452,7 +452,7 @@ def main():
parser.add_argument(
'--data-dir',
type=str,
default="/Users/sebastianfrohlich/Library/Mobile Documents/com~apple~CloudDocs/Jupyter Notebooks/Eurojackpot/data",
default="/Users/sebastianfrohlich/Projekte/Eurojackpot/data",
help='Daten-Verzeichnis'
)