From 40f07b691548bf04b7e53e77b83fdbd4112a3ed9 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Mon, 11 Aug 2025 13:13:53 -0300 Subject: [PATCH] feat: add --force option to allow binary output to TTY Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 63f27ef..392ff2c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -150,6 +150,9 @@ struct OptionsArgs { #[arg(long, env("KEEP_SERVER_PASSWORD"))] #[arg(help("Password for server authentication (requires --server)"))] server_password: Option, + + #[arg(long, help("Force output even when binary data would be sent to a TTY"))] + force: bool, } /**