diff options
Diffstat (limited to 'src/export_fun.rs')
| -rw-r--r-- | src/export_fun.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<Mutex<Session>>, 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, }, }; |
