mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
10 lines
210 B
Text
10 lines
210 B
Text
|
|
#!/bin/sh
|
||
|
|
echo "Checking Lua scripts..."
|
||
|
|
find . -name "*.lua" \
|
||
|
|
| while read s
|
||
|
|
do
|
||
|
|
if ! luac -p "$s" 2>/dev/null; then
|
||
|
|
echo "$s is invalid."
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
echo "Script check completed."
|