9 lines
229 B
Bash
9 lines
229 B
Bash
![]() |
#!/bin/sh
|
||
|
for file in $(find lib/ -name "*.nom") ; do
|
||
|
luafile="$file.lua"
|
||
|
if [ ! -e "$luafile" ] || [ "$file" -nt "$luafile" ] ; then
|
||
|
echo "Compiling $file into $luafile"
|
||
|
./nomsu.moon -c $file
|
||
|
fi
|
||
|
done
|