diff options
| author | Fuwn <[email protected]> | 2025-02-10 04:20:19 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-10 04:20:19 -0800 |
| commit | b0d62dea04b52d77338d1fe973dcd64ff781b627 (patch) | |
| tree | 705d0f7c6001ae538f3923e4699af8a8b803e8da /generate_latest | |
| parent | docs(readme): add icalendar installation instructions (diff) | |
| download | hololist-to-json-and-ical-b0d62dea04b52d77338d1fe973dcd64ff781b627.tar.xz hololist-to-json-and-ical-b0d62dea04b52d77338d1fe973dcd64ff781b627.zip | |
feat: add nijisanji support
Diffstat (limited to 'generate_latest')
| -rwxr-xr-x | generate_latest | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/generate_latest b/generate_latest index e41ff80..f959099 100755 --- a/generate_latest +++ b/generate_latest @@ -1,7 +1,9 @@ #!/usr/bin/env bash -python3 generate_json.py -python3 generate_icalendar.py +for profile in hololive nijisanji; do + python3 generate_json.py "${profile}" + python3 generate_icalendar.py "${profile}" -mv hololive_birthdays.json latest.json -mv hololive_birthdays.ics latest.ics + mv "${profile}_birthdays.json" "latest_${profile}.json" + mv "${profile}_birthdays.ics" "latest_${profile}.ics" +done |