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
Currently for each i18n4go command the user needs to use -c before the command name. With COBRA support we can remove this, so for instance:
i18n4go
-c
$i18n4go -c extract-strings -f i18n4go/i18n4go.go -v
should now be
$i18n4go extract-strings -f i18n4go/i18n4go.go -v
Also, since we will be deprecating -c let's add a warning when user still have -c like:
WARNING: the -c before <command-name> is now DEPRECATED and no longer needed. Future versions of i18n4go will remove -c alltogether
or something similar.
The text was updated successfully, but these errors were encountered:
Fixed with #89
Sorry, something went wrong.
Aerex
No branches or pull requests
Currently for each
i18n4go
command the user needs to use-c
before the command name. With COBRA support we can remove this, so for instance:$i18n4go -c extract-strings -f i18n4go/i18n4go.go -v
should now be
$i18n4go extract-strings -f i18n4go/i18n4go.go -v
Also, since we will be deprecating
-c
let's add a warning when user still have-c
like:or something similar.
The text was updated successfully, but these errors were encountered: