Skip to content

Commit

Permalink
Use an explicit name for the env var used to set ca-cert.
Browse files Browse the repository at this point in the history
  • Loading branch information
flihp committed Apr 16, 2024
1 parent 1ed8224 commit 79ac8d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion verifier-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ enum AttestCommand {
},
Verify {
/// Path to file holding trust anchor for the associated PKI.
#[clap(long, env, conflicts_with = "self_signed")]
#[clap(
long,
env = "VERIFIER_CLI_CA_CERT",
conflicts_with = "self_signed"
)]
ca_cert: Option<PathBuf>,

/// Preserve temporary / intermediate files. The path to the
Expand Down

0 comments on commit 79ac8d0

Please sign in to comment.