mirror of https://github.com/ArduPilot/ardupilot
20 lines
491 B
Bash
20 lines
491 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Generate md file from lua docs with lua-language-sever
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
cd ../..
|
||
|
|
||
|
if [ -n "$(ls -A lualogs)" ]; then
|
||
|
echo "lualogs Not Empty"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Need to use abs paths due to lua-language-sever bug
|
||
|
CONFIG_PATH=$(realpath libraries/AP_Scripting/tests/docs.json)
|
||
|
DOC_PATH=$(realpath libraries/AP_Scripting/docs/)
|
||
|
|
||
|
lua-language-server --configpath ${CONFIG_PATH} --logpath lualogs --doc ${DOC_PATH}
|
||
|
|
||
|
mv lualogs/doc.md ScriptingDocs.md
|
||
|
rm -r lualogs
|