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 07ece8e commit c2ad5f9Copy full SHA for c2ad5f9
src/sudo/cli/mod.rs
@@ -116,8 +116,6 @@ impl TryFrom<SudoOptions> for SudoHelpOptions {
116
let help = mem::take(&mut opts.help);
117
debug_assert!(help);
118
119
- reject_all("--help", opts)?;
120
-
121
Ok(Self {})
122
}
123
@@ -133,8 +131,6 @@ impl TryFrom<SudoOptions> for SudoVersionOptions {
133
131
let version = mem::take(&mut opts.version);
134
132
debug_assert!(version);
135
136
- reject_all("--version", opts)?;
137
138
139
140
0 commit comments