Only copy the CSS if it does not exist.

This commit is contained in:
2025-08-14 09:34:05 -07:00
parent 4e3921e973
commit bafc97d25f

4
run.sh
View File

@@ -6,6 +6,8 @@ cd $DIR
rm -rfv public
mkdir -pv public
cp -rv themes/lugo/static/style.css static/
if [[ ! -f static/style.css ]]; then
cp -rv themes/lugo/static/style.css static/
fi
hugo server -D --noBuildLock