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 might be useful if the scripts could be ran in verbose mode. In which mode each command would be printed before execute.
echo: echo foo
Run bake --verbose echo with above Bakefile:
bake --verbose echo
+ Executing echo: | + echo foo | foo + Done.
I found the --debug option, but it is too verbose to be used in actual usage: it prints bake internal stuff. Also, the option is hidden.
--debug
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It might be useful if the scripts could be ran in verbose mode. In which mode each command would be printed before execute.
echo: echo foo
Run
bake --verbose echo
with above Bakefile:Alternatives:
I found the
--debug
option, but it is too verbose to be used in actual usage: it prints bake internal stuff. Also, the option is hidden.The text was updated successfully, but these errors were encountered: