From e5936aa730f3c99475f7689813a7e0fe0a791b39 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Tue, 26 May 2026 18:25:15 +0200 Subject: [PATCH] hotfix zshell-cli shell show had no output --- cli/src/zshell/subcommands/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/src/zshell/subcommands/shell.py b/cli/src/zshell/subcommands/shell.py index 4b30da7..760c826 100644 --- a/cli/src/zshell/subcommands/shell.py +++ b/cli/src/zshell/subcommands/shell.py @@ -51,6 +51,7 @@ def show(): result = subprocess.run(args + ["ipc"] + ["show"], capture_output=True) if result.returncode != 0: raise click.ClickException(result.stderr.decode().strip()) + sys.stdout.write(result.stdout.decode()) sys.stderr.write(result.stderr.decode())