From b9906cfea1897a21a14e797fbf5bdb5a3d157acd Mon Sep 17 00:00:00 2001 From: Soc Virnyl Estela Date: Tue, 5 Nov 2024 15:56:58 +0800 Subject: [PATCH] fix: typoed a dash. it was an underscore Signed-off-by: Soc Virnyl Estela --- cargo/src/cargo_commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cargo/src/cargo_commands.rs b/cargo/src/cargo_commands.rs index 8876051..7795b73 100644 --- a/cargo/src/cargo_commands.rs +++ b/cargo/src/cargo_commands.rs @@ -112,7 +112,7 @@ pub fn cargo_vendor( if let Some(first) = &manifest_paths.first() { let _first_manifest = &curdir.join(first); if _first_manifest.exists() { - default_options.push("--manifest_path".to_string()); + default_options.push("--manifest-path".to_string()); let string_lossy = &_first_manifest.to_string_lossy(); default_options.push(string_lossy.to_string()); first_manifest = _first_manifest.to_path_buf();