mirror of https://github.com/ArduPilot/ardupilot
8 lines
168 B
Bash
8 lines
168 B
Bash
|
#!/bin/bash
|
||
|
# Run lua check for all lua files passing AP specific config
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
cd ../..
|
||
|
|
||
|
luacheck */ --config libraries/AP_Scripting/tests/luacheck.lua
|