-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Please explain the motivation behind the feature request.
Does this feature solve a particular problem you have been experiencing? What opportunities or use cases would be unlocked with this feature?
I often embed goose as a tool in my shell scripts like:
NO_COLOR=1 goose run --recipe find_all_tasks | tail -n1 | jq '.tasks[]' | ...The problems are
- You must set
NO_COLORenv otherwise the output contains color control chars. - To retrieve JSON and pipe to
jq, you must dotail -n1- I believed
--quietis the solution, but it is not. feat(cli): Add--quiet /-qflag to goose run #2939
- I believed
Describe the solution you'd like
A clear and concise description of what you want to happen.
One of:
- Add a option
--output-format=json - Add a option
--machine-readable - Introduce breaking change into
--quiteoption as I thought.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
- I have verified this does not duplicate an existing feature request
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request