From d5998d71a6410c9345efa3c2725971caa3e105b8 Mon Sep 17 00:00:00 2001 From: chwons <86314678+chwons@users.noreply.github.com> Date: Thu, 7 Nov 2024 11:19:31 +0900 Subject: [PATCH] fix: rust binary has conflicting short options Short option names must be unique for each argument, but '-s' is in use by both 'state' and 'skills_filename' --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index eb05a9d..ee72f61 100644 --- a/src/main.rs +++ b/src/main.rs @@ -166,7 +166,7 @@ struct Args { #[clap(short, long)] eft_filename: Option, - #[clap(short, long)] + #[clap(short = 'f', long)] skills_filename: Option, #[clap(short, long, default_value = "node_modules/@eveshipfit/data/dist/sde")]