fix dotnets process group

This commit is contained in:
Ruben Fiszel
2025-08-13 12:14:03 +00:00
parent 00243ef48b
commit 2b5b4f6cb5

View File

@@ -653,7 +653,7 @@ pub async fn start_child_process(
use process_wrap::tokio::*;
let mut cmd = TokioCommandWrap::from(cmd);
if !*DISABLE_PROCESS_GROUP {
if !*DISABLE_PROCESS_GROUP || executable.starts_with("dotnet ") {
#[cfg(unix)]
{
use process_wrap::tokio::ProcessGroup;