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
jf --help usage does not mention global options at all
USAGE:
jf <valueToFind> <jsonFile>
should be
jf [GLOBAL OPTIONS] <valueToFind> <jsonFile>
join arguments does not work
jf -fr "something"
Incorrect Usage. flag provided but not defined: -fr
...
...
...
2022/05/10 10:49:01 flag provided but not defined: -fr
the above message is duplicate
in help arguments mentioned as 'global options' while in error as 'flag provided'
bonus :) jf -f -r "something" works, but jf -r "something" -f silently ignores the misplaced -f
The text was updated successfully, but these errors were encountered:
jsonfind currently uses urfave's cli package to handle the CLI bits. This issue might prompt me to move to Cobra or something similar if this isn't supported with what I'm already using.
jf --help usage does not mention global options at all
USAGE:
jf <valueToFind> <jsonFile>
should be
jf [GLOBAL OPTIONS] <valueToFind> <jsonFile>
join arguments does not work
jf -fr "something"
Incorrect Usage. flag provided but not defined: -fr
...
...
...
2022/05/10 10:49:01 flag provided but not defined: -fr
the above message is duplicate
in help arguments mentioned as 'global options' while in error as 'flag provided'
bonus :) jf -f -r "something" works, but jf -r "something" -f silently ignores the misplaced -f
The text was updated successfully, but these errors were encountered: