aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.sh
blob: ec0ea86171b04f0d64b9339bd7d939d207591151 (plain)
1
2
3
4
5
6
7
# ! /bin/sh
rm -rf public/*
cp style.css public/
cp favicon.ico public/
cp images/* public/
(cat _header.html; multimarkdown index.md; cat _footer.html) > public/index.html
find public -type f \( -name "*.html" -o -name "*.css" \) -exec gzip -k -f {} \;