aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/validate-docx2.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/validate-docx2.sh b/tools/validate-docx2.sh
deleted file mode 100644
index 7b43c62a0..000000000
--- a/tools/validate-docx2.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-# based on validate-docx.sh, and adapted for OOXMLValidatorCLI
-# Modified by edwintorok from https://github.com/devoidfury/docx-validator
-# to look at more files than just document.xml.
-# Further modified by jgm for portability.
-
-tmpdir=$(mktemp -d)
-error_files=""
-errors=0
-VALIDATOR=OOXML-Validator/bin/Release/*/OOXMLValidatorCLI
-
-for file in "$@"; do
- file_errors=0
- echo "*** Checking $file"
- dotnet $(VALIDATOR) "${file}" 2>&1 || file_errors=1
- if [ $file_errors -gt 0 ]; then
- errors=$((file_errors + errors))
- error_files="$error_files\n$file"
- fi
-done
-if [ $errors -gt 0 ]; then
- echo "These files failed validation:$error_files"
-fi
-exit $errors