We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12db56c commit ebfc65cCopy full SHA for ebfc65c
src/cargo/util/command_prelude.rs
@@ -281,8 +281,9 @@ pub trait ArgMatchesExt {
281
// In general, we try to avoid normalizing paths in Cargo,
282
// but in this particular case we need it to fix #3586.
283
let path = paths::normalize_path(&path);
284
- if !path.ends_with("Cargo.toml") {
285
- anyhow::bail!("the manifest-path must be a path to a Cargo.toml file")
+ match path.file_name().map(|name| name.to_str()).flatten() {
+ Some(name) if name.starts_with("Cargo.") && name.ends_with(".toml") => {}
286
+ _ => anyhow::bail!("the manifest-path must be a path to a Cargo.toml file"),
287
}
288
if !path.exists() {
289
anyhow::bail!(
0 commit comments