From e3fce1c0c79a2ad287eb656296f1e862ffd92973 Mon Sep 17 00:00:00 2001 From: John Kenyon Date: Mon, 7 Apr 2025 04:28:19 +0000 Subject: [PATCH] Fix CLI argument conflict: Change socket option from -s to -S --- client/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.rs b/client/src/main.rs index 2e4841b..702e359 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -22,7 +22,7 @@ mod display; #[clap(version, about, long_about = None)] struct Args { /// Path to the Unix domain socket - #[clap(short, long)] + #[clap(short = 'S', long)] socket: Option, /// Session to connect to