mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.prosodyctl: Added the check_flags function
This commit is contained in:
parent
372a90aff6
commit
d2524edff4
1 changed files with 12 additions and 1 deletions
|
@ -292,10 +292,20 @@ local function get_path_custom_plugins(plugin_paths)
|
|||
-- I'm considering that we are using just one path to custom plugins, and it is the first in prosody.paths.plugins, for now
|
||||
-- luacheck: ignore 512
|
||||
for path in plugin_paths:gmatch("[^;]+") do
|
||||
return path
|
||||
return path;
|
||||
end
|
||||
end
|
||||
|
||||
local function check_flags(arg)
|
||||
local flag = "--tree=";
|
||||
-- There might not be any argument when the list command is calling this function
|
||||
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
||||
local dir = arg[1]:match("=(.+)$")
|
||||
return true, arg[2], dir;
|
||||
end
|
||||
return false, arg[1]
|
||||
end
|
||||
|
||||
return {
|
||||
show_message = show_message;
|
||||
show_warning = show_message;
|
||||
|
@ -317,4 +327,5 @@ return {
|
|||
stop = stop;
|
||||
reload = reload;
|
||||
get_path_custom_plugins = get_path_custom_plugins;
|
||||
check_flags = check_flags;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue