mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
9 lines
175 B
Bash
Executable file
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
|