mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
prosodyctl: check: Slightly improved argument handling
This commit is contained in:
parent
1af4939c11
commit
5af6db124a
1 changed files with 11 additions and 1 deletions
|
@ -254,6 +254,9 @@ local check_opts = {
|
||||||
short_params = {
|
short_params = {
|
||||||
h = "help", v = "verbose";
|
h = "help", v = "verbose";
|
||||||
};
|
};
|
||||||
|
value_params = {
|
||||||
|
ping = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
local function check(arg)
|
local function check(arg)
|
||||||
|
@ -262,7 +265,14 @@ local function check(arg)
|
||||||
return 1;
|
return 1;
|
||||||
end
|
end
|
||||||
local what = table.remove(arg, 1);
|
local what = table.remove(arg, 1);
|
||||||
local opts = assert(parse_args(arg, check_opts));
|
local opts, opts_err, opts_info = parse_args(arg, check_opts);
|
||||||
|
if opts_err == "missing-value" then
|
||||||
|
print("Error: Expected a value after '"..opts_info.."'");
|
||||||
|
return 1;
|
||||||
|
elseif opts_err == "param-not-found" then
|
||||||
|
print("Error: Unknown parameter: "..opts_info);
|
||||||
|
return 1;
|
||||||
|
end
|
||||||
local array = require "util.array";
|
local array = require "util.array";
|
||||||
local set = require "util.set";
|
local set = require "util.set";
|
||||||
local it = require "util.iterators";
|
local it = require "util.iterators";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue