Skip to content

Commit

Permalink
chore: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
linux-china committed Jun 16, 2024
1 parent 69fd550 commit 2cec633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/managers/mix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn get_task_command_map() -> HashMap<String, String> {
task_command_map.insert("init".to_string(), "mix new {name}".to_string());
task_command_map.insert("install".to_string(), "mix deps.get".to_string());
task_command_map.insert("compile".to_string(), "mix compile".to_string());
task_command_map.insert("build".to_string(), "hex.build".to_string());
task_command_map.insert("build".to_string(), "mix hex.build".to_string());
task_command_map.insert("deps".to_string(), "mix deps.tree".to_string());
task_command_map.insert("doc".to_string(), "mix docs".to_string());
task_command_map.insert("clean".to_string(), "mix clean".to_string());
Expand Down

0 comments on commit 2cec633

Please sign in to comment.