prosodyctl: Hide the 'lua_paths' command from default command listing

All commands are called with a '-h' argument, but this one doesn't have
that. Since it's meant to be machine readable, hiding it seems
marginally more sensible than implementing '-h'.
This commit is contained in:
Kim Alvefur 2025-01-08 22:46:21 +01:00
parent ede98f71e4
commit 7288595789

View file

@ -649,7 +649,7 @@ local command_runner = async.runner(function ()
print("");
print("Where COMMAND may be one of:");
local hidden_commands = require "prosody.util.set".new{ "register", "unregister" };
local hidden_commands = require "prosody.util.set".new{ "register", "unregister", "lua_paths" };
local commands_order = {
"Process management:",
"start"; "stop"; "restart"; "reload"; "status";