util.argparse: Translate '-' to '_' in long option names for convenience

A review of existing code suggests nothing will break. So, here we go...
This commit is contained in:
Matthew Wild 2023-04-07 13:24:29 +01:00
parent 8e38a4740e
commit 69ce40a6d2

View file

@ -44,6 +44,7 @@ local function parse(arg, config)
param_k, param_v = param, true;
end
end
param_k = param_k:gsub("%-", "_");
end
parsed_opts[param_k] = param_v;
end