mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-23 08:46:56 +00:00
11 lines
246 B
Bash
11 lines
246 B
Bash
#!/bin/bash
|
|
|
|
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
|
|
jq <validation
|
|
|
|
[ $(cat validation | wc -c) = 2 ]
|