Simplify cargo metadata manifest path setup using if-let

This commit is contained in:
David Tolnay 2023-07-16 13:25:39 -07:00
parent 7c31ec4f1c
commit b4d9e1753e
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -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()
}