hotfix zshell-cli shell show had no output #103

Merged
zach merged 5 commits from 100-cli-autocompletion into main 2026-05-26 18:50:27 +02:00
Showing only changes of commit e5936aa730 - Show all commits
+1
View File
@@ -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())