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
If I do dnsmole --serve -k 34 toto, I get an error because --serve and -k are conflicting. The problem is the error message:
error: The argument '--serve' cannot be used with '--socket <socket>'
USAGE:
dnsmole <target> --connect --socket <socket> <--serve|--connect>
For more information try --help
The usage line displays --serve twice when it can only be specified once. Also, --serve and --connect are part of an arggroup which is required.
EDIT: Ideally, <target> should be at the end since it is a positional argument
The text was updated successfully, but these errors were encountered:
…s and ones that conflict with each other
Args that conflict *and* are in a group will now only display in the
group and not in the usage string itself.
Closes#616
Hello,
The code displaying this issue is here: guiniol/dnsmole@cc868c1
If I do
dnsmole --serve -k 34 toto
, I get an error because--serve
and-k
are conflicting. The problem is the error message:The usage line displays
--serve
twice when it can only be specified once. Also,--serve
and--connect
are part of an arggroup which is required.EDIT: Ideally,
<target>
should be at the end since it is a positional argumentThe text was updated successfully, but these errors were encountered: