aboutsummaryrefslogtreecommitdiff
path: root/generate_latest
blob: f95909945f8051dc9bd573a664735182a25b3560 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

for profile in hololive nijisanji; do
  python3 generate_json.py "${profile}"
  python3 generate_icalendar.py "${profile}"

  mv "${profile}_birthdays.json" "latest_${profile}.json"
  mv "${profile}_birthdays.ics" "latest_${profile}.ics"
done