From c4d51f82c3727a0db96cd894c0dace135bda6bf0 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Thu, 19 Feb 2026 10:51:52 +0100 Subject: [PATCH] actually fixed --- cli/src/zshell/subcommands/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/zshell/subcommands/shell.py b/cli/src/zshell/subcommands/shell.py index d53e23d..156e8d2 100644 --- a/cli/src/zshell/subcommands/shell.py +++ b/cli/src/zshell/subcommands/shell.py @@ -13,7 +13,7 @@ def kill(): @app.command() def start(no_daemon: bool = False): - subprocess.run(args + ([] if no_daemon else ["-d"]), check=True) + subprocess.run(args + ["-n"] + ([] if no_daemon else ["-d"]), check=True) @app.command()