Easier way to pass a single command argument

This commit is contained in:
David Tolnay 2023-07-16 13:41:49 -07:00
parent 7c11e5d1e8
commit 60d01a297f
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -318,7 +318,7 @@ fn apply_args(cmd: &mut Command, args: &Expand, color: &Coloring, outfile: &Path
if let Some(root_package) = cargo_metadata.root_package() {
if let Some(ref default_run) = root_package.default_run {
line.arg("--bin");
line.args(Some(default_run));
line.arg(default_run);
}
}
}