mirror of
https://bitbucket.org/seefoe/dockerized-swg.git
synced 2026-01-16 23:04:17 -05: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
|