From 8846b8bb743c50a3fdc71dbceb62b2caa62e9dd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Fri, 10 Jan 2025 12:05:01 +0100 Subject: [PATCH] Restore explicit stdin inherit --- xtask/src/cargo.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/xtask/src/cargo.rs b/xtask/src/cargo.rs index d5ceb43ec31..3bb7efda770 100644 --- a/xtask/src/cargo.rs +++ b/xtask/src/cargo.rs @@ -64,6 +64,7 @@ where } else { Stdio::inherit() }) + .stdin(Stdio::inherit()) .output()?; // Make sure that we return an appropriate exit code here, as Github Actions