samhuri.net/bin/test
Sami Samhuri 652d192560 Hide .html extensions on all pages by default
This uses the same old page-title/index.html trick that was used before.
2019-12-10 00:27:56 -08:00

9 lines
175 B
Bash
Executable file

#!/bin/bash
set -e
for site in Tests/test-*; do
bin/compile "$site/in" "$site/actual" # >/dev/null
diff -bru "$site/expected" "$site/actual"
rm -r "$site/actual"
done