mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
8 lines
152 B
Bash
Executable file
8 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
|