diff options
| -rw-r--r-- | tools/validate-docx.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/validate-docx.sh b/tools/validate-docx.sh index 09ed1a2f5..bf66f3b57 100644 --- a/tools/validate-docx.sh +++ b/tools/validate-docx.sh @@ -9,7 +9,7 @@ for file in "$@"; do file_errors=0 echo "*** Checking $file" rm -rf "$tmpdir" - unzip -q -o -j "$file" -d "$tmpdir" + unzip -q -o -j "$file" "word/*.xml" "word/_rels/*.xml" -d "$tmpdir" for i in "$tmpdir"/*.xml; do xmllint --format "${i}" > "${i}.pretty.xml" done |
