From b91f8c354b60f9db22d4ad65a1e6f72b13c8b693 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 20 Aug 2024 11:08:30 -0400 Subject: CI add pandoc (and bug fixes) (#35) * Fix pandoc command regression * Add space between destination and input * Add pandoc dependency * Dump output of indexed files --- tests/rt_generic.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'tests') diff --git a/tests/rt_generic.sh b/tests/rt_generic.sh index fced08e..6da953d 100644 --- a/tests/rt_generic.sh +++ b/tests/rt_generic.sh @@ -72,6 +72,7 @@ pushd "$ws" retcode=$? set +x + echo "#### Files ####" find output for cond in "${fail_on_indexer[@]}"; do @@ -80,6 +81,17 @@ pushd "$ws" exit 1 fi done + + echo "#### Contents ####" + files=$(find output -type f \( -name '*.html' \) | sort) + for x in $files; do + echo + echo "FILENAME: $x" + echo + cat "$x" + echo "[EOF]" + echo + done popd rm -rf "$ws" -- cgit