0ad/source/tools/xmlvalidator/generate_rngs.sh
leper 7cac7cd65e Add RNC to RNG conversion script that uses trang. Fixes #245.
Also fix the material.rnc.

This was SVN commit r16734.
2015-06-07 23:52:52 +00:00

9 lines
152 B
Bash
Executable File

#!/bin/bash
VFSROOT=${1:-"../../../binaries/data/mods"}
for schema in $(find "$VFSROOT" -name '*.rnc')
do
trang "$schema" "${schema/.rnc/.rng}"
done