mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Simplify cargo metadata manifest path setup using if-let
This commit is contained in:
parent
7c31ec4f1c
commit
b4d9e1753e
1 changed files with 2 additions and 5 deletions
|
@ -509,11 +509,8 @@ fn cargo_metadata(
|
|||
manifest_path: &Option<PathBuf>,
|
||||
) -> cargo_metadata::Result<cargo_metadata::Metadata> {
|
||||
let mut cmd = cargo_metadata::MetadataCommand::new();
|
||||
match manifest_path {
|
||||
Some(manifest_path) => {
|
||||
cmd.manifest_path(manifest_path);
|
||||
}
|
||||
None => {}
|
||||
if let Some(manifest_path) = manifest_path {
|
||||
cmd.manifest_path(manifest_path);
|
||||
}
|
||||
cmd.exec()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue