mirror of
https://github.com/Adorable-Catgirl/LuaComp.git
synced 2024-11-15 14:38:05 +11:00
5 lines
167 B
Bash
5 lines
167 B
Bash
|
for test in $(find -name "*.lua"); do
|
||
|
echo "Running test $test"
|
||
|
luacomp $test > $test.out
|
||
|
echo "=============================================================="
|
||
|
done
|