blob: 72666eb9104e268193a593d2d61acbade833226a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/bash
[ "x${DEBUG+set}" = 'xset' ] && set -v
set -e
find -L . -name '*.html' -and -not -name 'template.html' -delete
find -L . -name '*.md' -exec ./publish.sh {} \;
./index.sh
|