blob: 21610a2fd2700a47b537c89ff4450b71f58071d5 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/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 {} \;
|