You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[DSL#arg] lacks a :desc option to describe the argument in order to specify what is expected.
For example, in other tools you often see description for arguments:
The temporary workaround I found was to describe them in the long_desc:
duzdu.desc'TODO'duzdu.long_desc"<name>: DNS name, A record. The domain is automatically appended, e.g. test ➡️ test.example.org\n\n<ip>: IP address."duzdu.arg:'<name>'duzdu.arg:'<ip>'duzdu.command:adddo |add|
add.actiondo |_global_options,options,_args|
duz=duzdu_init(options)duz.display('addv4')endend
hacking the arguments' description into the command long description:
The text was updated successfully, but these errors were encountered:
[DSL#arg] lacks a
:desc
option to describe the argument in order to specify what is expected.For example, in other tools you often see description for arguments:
The temporary workaround I found was to describe them in the
long_desc
:hacking the arguments' description into the command long description:
The text was updated successfully, but these errors were encountered: