Results 170 comments of Sagie Gur-Ari

there is some unstable feature for singal handling which kills child process and might be a good start for reusing for this issue. would you like to investigate a solution...

there is no condition on cli arg, but you can look at env setup scripts: https://github.com/sagiegurari/cargo-make#env-setup-scripts and write a small duckscript to check args and setup env var this for...

@hydra and here is the exact script you need ```toml env_scripts = [ ''' #!@duckscript for arg in ${@} verbose_found = eq ${arg} verbose if ${verbose_found} set_env RUSTC_LOG rustc_codegen_ssa::back::link=info goto...

> another programming language duckscript is similar to simple shell but much more limited and simple. not much to learn. read it for 5 mins at https://github.com/sagiegurari/duckscript and tell me...

you can run a command and put its last outline line as the value, so you can do something like: ```toml [env] CURRENT_DATE = { script = ["date"] } ```...

@noahlin27 does this resolve your issue?

closing due to lack of feedback and solution provided

@noahlin27 so you can load different env script per OS 1. either use load_script - https://github.com/sagiegurari/cargo-make#load-scripts - which do support duckscript and you can do if is_windows and stuff like...

I would need some test case to run so i'll be able to reproduce and solve. otherwise, with the description alone, its not enough to help.

I created another stability test with your scenario but couldn't repo it. i have to admit, that if you are facing a crash, it means something went wrong in the...