From d10a1b087458bad2b5dbcc7ee96518c3b3f674ec Mon Sep 17 00:00:00 2001 From: Jonas Maier Date: Tue, 10 Mar 2026 10:00:59 +0100 Subject: rework command executor --- src/export_fun.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/export_fun.rs') diff --git a/src/export_fun.rs b/src/export_fun.rs index 0e0f33a..3c0f1c9 100644 --- a/src/export_fun.rs +++ b/src/export_fun.rs @@ -90,8 +90,8 @@ fn handle_server(session: Arc>, mut stream: UnixStream) -> io::Re let exit_code = match res { Ok(_) => 0, Err(e) => match e { - crate::run::ExecError::UnknownVariable(_) => -3, crate::run::ExecError::ExecError(x) => x, + _ => -3, }, }; -- cgit v1.2.3