mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-08-02 03:16:09 -04:00
9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
basedir=$PWD
|
|
|
|
find $basedir/dsrc -name '*.tdf' | while read filename; do
|
|
echo $filename
|
|
$basedir/exe/linux/bin/TemplateDefinitionCompiler -compile $filename
|
|
done
|