aboutsummaryrefslogtreecommitdiff
path: root/spec/cmd_spec.lua (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feat: more informative reports no bad LUA_{INC,LIB}DIR configsHisham Muhammad2024-02-291-6/+0
|
* tests: reorganize and speed up unit testsHisham Muhammad2024-02-271-3/+1
|
* improve and simplify Lua interpreter searchHisham Muhammad2024-02-201-1/+1
| | | | | | | * do not proceed with commands if interpreter is not found * begin retiring LUA_DIR and LUA_BINDIR, and promote LUA as the main way to setup the interpreter location (from which we derive the rest)
* Fix crash when --lua-version is malformedHisham Muhammad2022-02-081-0/+5
|
* editorconfig: trim trailing whitespaceHisham Muhammad2021-03-161-1/+1
|
* Print more info about the location of LuaHisham Muhammad2020-04-221-5/+5
|
* Handle quoting at the application level (#1181)Hisham Muhammad2020-04-161-0/+4
| | | | | | | This is done to support Windows. Unix handles quoting at the shell level. While quotes are technically valid as part of Unix names, I don't expect this pathological case to be something we need to support. Closes #1173.
* cmd: fallback to actual PATH searchHisham Muhammad2020-01-141-1/+1
|
* Fix and reorganize Lua version detectionHisham Muhammad2019-06-031-0/+70
| | | | | | | | | | Make it more robust when detecting the Lua version when working inside a project, and hopefully make the detection logic easier to track in the code. Reorganized code so that the `detected` table becomes internal to the `init_config` operation and only the regular `cfg` global table is used after that. Includes regression tests.
* cmd: fix crash if LuaRocks is given a bad LUA_DIRHisham Muhammad2019-06-031-0/+34
Includes a regression test.