fix: add missing parameter to --path option

This commit is contained in:
Glenn Y. Rolland 2024-10-13 15:06:01 +02:00
parent 07f2275a41
commit 44b5daf5c7

View file

@ -23,7 +23,7 @@ module GX::Parsers
parser.banner = Utils.usage_line(breadcrumbs + "init", "Create initial mfm configuration")
parser.separator("\nInit options")
parser.on("-p", "--path", "Set mapping encrypted path") do |path|
parser.on("-p", "--path PATH", "Set mapping encrypted path") do |path|
config.config_init_options.try do |opts|
opts.path = path
end