Tactical commit before attempting recursive validation

This commit is contained in:
Simon Brooke 2023-01-10 20:36:00 +00:00
parent a185edb9da
commit 440ea003e2
8 changed files with 39 additions and 28 deletions

14
scan-test-docs.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
docs=../dog-and-duck/resources/activitystreams-test-documents/
for file in ${docs}/*.json
do
name=`basename ${file} | sed s/json$/html/`
echo ${name}
java -jar target/uberjar/quack-0.1.0-SNAPSHOT-standalone.jar \
-i ${file} \
-o "docs/samples/${name}" \
-f html
done