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 da60329 commit 746ba3dCopy full SHA for 746ba3d
src/cli.rs
@@ -175,7 +175,10 @@ pub fn parse(target_list: &TargetList) -> Result<Args> {
175
if arg.is_empty() {
176
continue;
177
}
178
- if let v @ 1.. = is_verbose(arg.as_str()) {
+ if matches!(arg.as_str(), "--") {
179
+ all.push(arg);
180
+ all.extend(args.by_ref());
181
+ } else if let v @ 1.. = is_verbose(arg.as_str()) {
182
verbose += v;
183
all.push(arg);
184
} else if matches!(arg.as_str(), "--version" | "-V") {
0 commit comments