diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2020-07-02 07:09:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 07:09:17 -0400 |
commit | 7b529e7912517af078e005dd7b06b3d042be9cb7 (patch) | |
tree | 07ce777cc208f93776e1a858bb3a1eac3d91bfdf /scripts/lua2dox_filter | |
parent | 2844cd54dab2893a0baa0464e8de0a01f1048b05 (diff) | |
download | rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.tar.gz rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.tar.bz2 rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.zip |
doc: fix scripts and regenerate (#12506)
* Fix some small doc issues
* doc: fixup
* doc: fixup
* Fix lint and rebase
* Remove bad advice
* Ugh, stupid mpack files...
* Don't let people include these for now until they specifically want to
* Prevent duplicate tag
Diffstat (limited to 'scripts/lua2dox_filter')
-rwxr-xr-x | scripts/lua2dox_filter | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/lua2dox_filter b/scripts/lua2dox_filter index 6cb16ef060..61577527c4 100755 --- a/scripts/lua2dox_filter +++ b/scripts/lua2dox_filter @@ -36,7 +36,16 @@ test_executable(){ ##! \brief sets the lua interpreter set_lua(){ - test_executable 'texlua' + if test -z "${EXE}" + then + test_executable 'luajit' + fi + + if test -z "${EXE}" + then + test_executable 'texlua' + fi + if test -z "${EXE}" then test_executable 'lua' |