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
The readme contains this line
If multiple blocks are triggered by the same set of changes, they too run in order, from top to bottom.
If I have a sequence of blocks
**/*.txt { prep: echo "block 1" } **/*.txt { prep: echo "block 2" }
May I do something to stop the execution of block 2 if something fails in block 1?
Thanks.
The text was updated successfully, but these errors were encountered:
I don't believe so. I believe you could instead use multiple prep directives in a single block to achieve the desired outcome.
prep
**/*.txt { prep: echo "prep 1" prep: echo "prep 2" }
Sorry, something went wrong.
No branches or pull requests
The readme contains this line
If I have a sequence of blocks
May I do something to stop the execution of block 2 if something fails in block 1?
Thanks.
The text was updated successfully, but these errors were encountered: