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
Only forwarding ctrl-c to task instead of kill current flow
While running a long run task and followed by a clean up task, I'd like to send ctrl-c to the long running task, but all following tasks still run.
[tasks.all] dependencies = [ "init", "do-something", "cleanup", ]
cargo make all
send ctrl-c
cleanup will always be called.
The text was updated successfully, but these errors were encountered:
@shiqicao does the cntrlc option help?
https://github.com/sagiegurari/cargo-make?tab=readme-ov-file#usage-unstable-features
Sorry, something went wrong.
sagiegurari
No branches or pull requests
Feature Description
Only forwarding ctrl-c to task instead of kill current flow
Describe The Solution You'd Like
While running a long run task and followed by a clean up task, I'd like to send ctrl-c to the long running task, but all following tasks still run.
Code Sample
[tasks.all]
dependencies = [
"init",
"do-something",
"cleanup",
]
cargo make all
send ctrl-c
cleanup will always be called.
The text was updated successfully, but these errors were encountered: