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
I'd like to instruct task to not use colored output within the Taskfile if possible.
This doesn't work:
cat >Taskfile.yml <<EOF version: "3" vars: NO_COLOR: 1 env: NO_COLOR: 1 tasks: default: env: NO_COLOR: 1 cmds: - echo foo EOF task
These work fine:
NO_COLOR=1 task task --color=false
Not sure if i'm getting syntax wrong or its not supported.
The text was updated successfully, but these errors were encountered:
Hi @taylormonacelli,
It is not supported at the moment. The only way to do it is by setting the env variable or with the CLI flags
Sorry, something went wrong.
No branches or pull requests
I'd like to instruct task to not use colored output within the Taskfile if possible.
This doesn't work:
These work fine:
Not sure if i'm getting syntax wrong or its not supported.
The text was updated successfully, but these errors were encountered: