Archived
0
0
Fork 0
This repository has been archived on 2025-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
www/build.sh

11 lines
284 B
Bash
Raw Normal View History

2023-06-13 12:47:07 +02:00
#!/bin/sh
2019-03-13 23:45:59 +01:00
hugo $(cat .hugo-params)
2023-06-13 12:47:07 +02:00
./tools/merge_cals.py
upcoming="$(tools/gen_upcoming.py static/all.ics 20 5 | tr '\n' ' ')"
2025-02-11 22:51:09 +01:00
echo $upcoming
cat public/index.html
cp static/all.ics public/all.ics
2018-07-14 22:53:59 +02:00
sed -i "s#CALENDAR#$upcoming#g" public/index.html
2025-02-11 22:51:09 +01:00
cat public/index.html
echo $upcoming