aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-05-11 11:01:44 -0700
committerJohn MacFarlane <[email protected]>2025-05-11 11:01:44 -0700
commitf37b12d9419085fa12f095b6c5b2513542da431c (patch)
tree528e3270f7aaa4d98c6f7b31e78032cf7c54d170 /tools
parentab67c023591b25b97200df3d9a90dd98aa13dd8d (diff)
Use jq instead of json_reformat in validate-docx-golden-tests2.
Diffstat (limited to 'tools')
-rw-r--r--tools/validate-docx2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/validate-docx2.sh b/tools/validate-docx2.sh
index e46180620..34bfa9417 100644
--- a/tools/validate-docx2.sh
+++ b/tools/validate-docx2.sh
@@ -5,6 +5,6 @@ set -eu
(for i in "$@"; do
dotnet run --configuration=Release --framework=net8.0 --no-build --no-restore --project OOXML-Validator/OOXMLValidatorCLI -- "${i}" -r
done) >validation
-json_reformat -s <validation
+jq <validation
[ $(cat validation | wc -c) = 2 ]