mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
8 lines
168 B
Bash
Executable File
8 lines
168 B
Bash
Executable File
#!/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
|