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
Add --plain or --json flag to the commands.
--plain
--json
When the flag is used, the output should be minimal (e.g. no progress updates) and easy to parse in scripts, etc.
For instance the output of calling prospero install --json --profile wildfly --dir wfly would be:
prospero install --json --profile wildfly --dir wfly
{ "status": "OK", "operation": "install" }
or in case of an error:
{ "status": "ERROR", "operation": "install", "error_code": "PR01234" "msg": "Description of the error" }
[TODO] define the format of messages for all commands
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add
--plain
or--json
flag to the commands.When the flag is used, the output should be minimal (e.g. no progress updates) and easy to parse in scripts, etc.
For instance the output of calling
prospero install --json --profile wildfly --dir wfly
would be:or in case of an error:
[TODO] define the format of messages for all commands
The text was updated successfully, but these errors were encountered: