14 lines
508 B
Bash
14 lines
508 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
#Download luacheck binary if nessesary
|
|
if ! [ -x "cache/luacheck.exe" ]; then
|
|
wget --tries=5 --timeout=10 --waitretry=10 --read-timeout=10 --retry-connrefused -O cache/luacheck.exe https://github.com/mpeterv/luacheck/releases/download/0.23.0/luacheck.exe
|
|
fi
|
|
|
|
echo "Static analysys of"
|
|
find lua_modules lua_examples -iname "*.lua" -print0 | xargs -0 echo
|
|
|
|
(find lua_modules lua_examples -iname "*.lua" -print0 | xargs -0 cache/luacheck.exe --config tools/luacheck_config.lua) || exit
|