diff options
Diffstat (limited to 'users/grfn/xanthous/server')
-rw-r--r-- | users/grfn/xanthous/server/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/grfn/xanthous/server/src/main.rs b/users/grfn/xanthous/server/src/main.rs index 8441a5db3752..b9f2cb4270b4 100644 --- a/users/grfn/xanthous/server/src/main.rs +++ b/users/grfn/xanthous/server/src/main.rs @@ -128,6 +128,7 @@ impl Handler { if let Some(username) = &self.username { cmd.args(["--name", username]); } + cmd.arg("--disable-saving"); let child = pty::spawn(cmd, Some(winsize), None).await?; info!(pid = %child.pid, "Spawned child"); |