From ceaad750577d0cd368e951b1abf17d92a22a9907 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 4 Jan 2025 00:35:12 +0100 Subject: [PATCH] feat: inherit output as well Signed-off-by: kjuulh --- crates/churn/src/agent/plugins.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/churn/src/agent/plugins.rs b/crates/churn/src/agent/plugins.rs index b33fbe2..de21e20 100644 --- a/crates/churn/src/agent/plugins.rs +++ b/crates/churn/src/agent/plugins.rs @@ -185,6 +185,8 @@ impl ServerWasiView { let ctx = WasiCtxBuilder::new() .inherit_stdio() + .inherit_stdout() + .inherit_stderr() .inherit_env() .inherit_network() .preopened_dir("/", "/", DirPerms::all(), FilePerms::all())