Files
bbaovanc.com/build.sh
BBaoVanC e91a62ee18 Add search page using Pagefind
Updates #79. Still a bit rough but it works.
2025-07-02 02:14:42 -05:00

17 lines
301 B
Bash
Executable File

#!/bin/bash -ex
# POSIX sh doesn't have the time command
[ -z "$DEST" ] && DEST="public/"
rm -rf "$DEST"
hugo --printI18nWarnings --printPathWarnings -d "$DEST" $@
if [ -z "$NO_SEARCH" ]; then
time pagefind --site "$DEST"
fi
if [ -z "$NO_COMPRESS" ]; then
export DEST
./compress.sh
fi