blog/update.sh
2020-03-13 04:45:43 +01:00

11 lines
145 B
Bash
Executable file

#!/bin/bash
git pull
find src -iname '*.sh' | while read -r __file; do
time ./${__file}
done
HUGO_ENV=production hugo --gc --minify
exit