diff options
author | Kim Alvefur <zash@zash.se> | 2025-01-08 22:46:21 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-01-08 22:46:21 +0100 |
commit | 7288595789612580bd50cdc1944de6ba93349eac (patch) | |
tree | c3a613841fa8eb8cea5fa013018ef3fe3d1b097a | |
parent | ede98f71e4ede1e507d04dab1f14dd7457082be3 (diff) | |
download | prosody-7288595789612580bd50cdc1944de6ba93349eac.tar.gz prosody-7288595789612580bd50cdc1944de6ba93349eac.zip |
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'.
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; |