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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
For commands like these:
commands: build-app: ... run-app: depends: [build-app] ...
if build-app fails we show:
failed to run command 'build-app': exit status 130 failed to run command 'run-app': exit status 130
But we can make it something like
'run-app' -> 'build-app' failed: exit status 130 ^^^^^^^^^
or with more verbosity
'build-app' failed: exit status 130 'run-app' -> 'build-app' ^^^^^^^^^
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For commands like these:
if build-app fails we show:
But we can make it something like
or with more verbosity
The text was updated successfully, but these errors were encountered: