diff --git a/src/cli_args/mod.rs b/src/cli_args/mod.rs index bafd36a..a682655 100644 --- a/src/cli_args/mod.rs +++ b/src/cli_args/mod.rs @@ -104,7 +104,10 @@ pub struct LuksParameters { pub slot: Option, /// Disable implicit use of LUKS2 tokens - #[structopt(long = "disable-token", env = "FIDO2LUKS_DISABLE_TOKEN")] + #[structopt( + long = "disable-token", + // env = "FIDO2LUKS_DISABLE_TOKEN" // unfortunately clap will convert flags into args if they have an env attribute + )] pub disable_token: bool, }