Parser: now gives a better understanding of the error.
parent
df22fe8a9b
commit
f335be76de
|
@ -56,6 +56,8 @@ unrecognized_args_to_context_args = -> (parser : OptionParser, n_expected_args :
|
||||||
# With the right args, these will be interpreted as serialized data.
|
# With the right args, these will be interpreted as serialized data.
|
||||||
parser.unknown_args do |args|
|
parser.unknown_args do |args|
|
||||||
if args.size != n_expected_args
|
if args.size != n_expected_args
|
||||||
|
Baguette::Log.error "expected number of arguments: #{n_expected_args}, received: #{args.size}"
|
||||||
|
Baguette::Log.error "args: #{args}"
|
||||||
Baguette::Log.error "#{parser}"
|
Baguette::Log.error "#{parser}"
|
||||||
exit 1
|
exit 1
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue