Skip to content

Commit c814c33

Browse files
committed
chore: use cargo fetch for install
1 parent bc34753 commit c814c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/managers/cargo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub fn is_command_available() -> bool {
1717

1818
pub fn get_task_command_map() -> HashMap<String, String> {
1919
let mut task_command_map = HashMap::new();
20-
task_command_map.insert("install".to_string(), "cargo build".to_string());
20+
task_command_map.insert("install".to_string(), "cargo fetch".to_string());
2121
task_command_map.insert("compile".to_string(), "cargo build".to_string());
2222
task_command_map.insert("build".to_string(), "cargo build".to_string());
2323
task_command_map.insert("release".to_string(), "cargo build --release".to_string());

0 commit comments

Comments
 (0)