We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3007f23 commit e52157bCopy full SHA for e52157b
keygen/src/keygen.rs
@@ -104,7 +104,6 @@ fn no_passphrase_arg<'a>() -> Arg<'a> {
104
fn no_outfile_arg<'a>() -> Arg<'a> {
105
Arg::new(NO_OUTFILE_ARG.name)
106
.long(NO_OUTFILE_ARG.long)
107
- .conflicts_with_all(&["outfile", "silent"])
108
.help(NO_OUTFILE_ARG.help)
109
}
110
@@ -391,7 +390,9 @@ fn main() -> Result<(), Box<dyn error::Error>> {
391
390
.help("Do not display seed phrase. Useful when piping output to other programs that prompt for user input, like gpg"),
392
)
393
.key_generation_common_args()
394
- .arg(no_outfile_arg())
+ .arg(no_outfile_arg()
+ .conflicts_with_all(&["outfile", "silent"])
395
+ )
396
397
.subcommand(
398
Command::new("grind")
0 commit comments