forked from mirrors/0ad
7cac7cd65e
Also fix the material.rnc. This was SVN commit r16734.
9 lines
152 B
Bash
Executable File
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
|