aboutsummaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parentab67c023591b25b97200df3d9a90dd98aa13dd8d (diff)
Use jq instead of json_reformat in validate-docx-golden-tests2.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 36e9c379c..0bfe3dffe 100644
--- a/Makefile
+++ b/Makefile
@@ -251,7 +251,7 @@ validate-docx-golden-tests: ## validate docx golden tests against schema
validate-docx-golden-tests2: ## validate docx golden tests using OOXMLValidator
which dotnet || ("dotnet is required" && exit 1)
- which json_reformat || ("json_reformat is required" && exit 1)
+ which jq || ("jq is required" && exit 1)
test -d ./OOXML-Validator || \
(git clone https://github.com/mikeebowen/OOXML-Validator.git \
&& cd OOXML-Validator && dotnet build --configuration=Release)