From e6e344aad3eff00e21f55ac2a225daded4ba35f0 Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Tue, 19 Jul 2022 04:18:22 +0900 Subject: [PATCH] changed duplicate short option --- src/detections/configs.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 3d22cf75..248d1c9b 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -223,6 +223,14 @@ pub struct Config { /// Ignore rules according to status (ex: experimental) (ex: stable test) #[clap(long = "exclude-status", multiple_values = true)] pub exclude_status: Option>, + + /// Specify output profile + #[clap(short = 'P', long = "profile")] + pub profile: Option, + + /// Set default output profile + #[clap(long = "set-default-profile")] + pub set_default_profile: Option, } impl ConfigReader<'_> {