We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It appears that we use flags inconsistently (in some cases incorrectly) for the apps, currently.
I'm not sure why we haven't noticed errors from this yet.
The way the code is currently on develop, the apps use the "flags" package, which accepts flags in the format -flag and not --flag
-flag
--flag
here it's in the single hyphen format https://github.com/skycoin/skywire/blob/develop/pkg/visor/visorconfig/config.go#L247
but in pkg/visor/api we use the double hyphen format in some places and single hyphen in other places https://github.com/skycoin/skywire/blob/develop/pkg/visor/api.go#L777 https://github.com/skycoin/skywire/blob/develop/pkg/visor/api.go#L797
#1704 addresses this
The text was updated successfully, but these errors were encountered:
fixed in #1704
Sorry, something went wrong.
No branches or pull requests
It appears that we use flags inconsistently (in some cases incorrectly) for the apps, currently.
I'm not sure why we haven't noticed errors from this yet.
The way the code is currently on develop, the apps use the "flags" package, which accepts flags in the format
-flag
and not--flag
here it's in the single hyphen format
https://github.com/skycoin/skywire/blob/develop/pkg/visor/visorconfig/config.go#L247
but in pkg/visor/api we use the double hyphen format in some places and single hyphen in other places
https://github.com/skycoin/skywire/blob/develop/pkg/visor/api.go#L777
https://github.com/skycoin/skywire/blob/develop/pkg/visor/api.go#L797
#1704 addresses this
The text was updated successfully, but these errors were encountered: