f743e40567
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/cldr-emoji-annotation#9c0e9952528b95756b29a37fb2442a5b9252a0cc
14 lines
322 B
Bash
Executable File
14 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for dir in annotations annotationsDerived; do
|
|
for xml in /usr/share/unicode/cldr/common/$dir/*.xml; do
|
|
echo xmllint --noout --valid --postvalid $xml
|
|
xmllint --noout --valid --postvalid $xml
|
|
if [ $? -ne 0 ] ; then
|
|
echo "ERROR"
|
|
exit 1
|
|
fi
|
|
done
|
|
done
|
|
|