| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | feat(lua): send "--" literally to Lua "-l" script | Justin M. Keyes | 2023-01-05 |
| | | | | | | | | | | | | | Problem: When "-l" is followed by "--", we stop sending args to the Lua script and treat "--" in the usual way. This was for flexibility but didn't have a strong use-case, and has these problems: - prevents Lua "-l" scripts from handling "--" in their own way. - complicates the startup logic (must call nlua_init before command_line_scan) Solution: Don't treat "--" specially if it follows "-l". | ||
| * | fix(help): add `--clean` to `-h` (#20171) | Christian Clason | 2022-09-14 |
| | | | | update man file to match | ||
| * | build: move man/ to src/man/ #19119 | Justin M. Keyes | 2022-06-27 |
| Problem: man/ contains source files for manpage generation, it doesn't need to live at the project root. Solution: Move it to src/man/. | |||