blog-static-flake/blog/builder.sh

19 lines
406 B
Bash
Raw Normal View History

2020-04-06 16:51:17 -07:00
source $stdenv/setup
2020-09-02 17:03:02 -07:00
# Copy files to a mutable directory.
2020-04-06 16:51:17 -07:00
cp -r $src/* .
2020-09-02 17:03:02 -07:00
# Hugo can't set baseUrl via CLI for multi-lingual hosts.
# We have to manually edit the configuration.
sed -i "$urlSub" config.toml
# Build site with Hugo
hugo $extraFlags
# Output result
mkdir $out
2020-09-02 17:03:02 -07:00
cp -r public/$publicPath/* $out/
# Render math in HTML and XML files.
find $out/ -regex "$out/.*\.html" | xargs ruby $converter