Skip to content

Commit

Permalink
fix: 对从reg入口获取的卸载命令转换反斜杠
Browse files Browse the repository at this point in the history
  • Loading branch information
Cnotech committed Feb 22, 2024
1 parent c32b619 commit c547fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/reg_entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub fn get_reg_entry(entry_id: &String) -> UninstallRegEntry {

return UninstallRegEntry {
version,
uninstall_string,
uninstall_string: uninstall_string.map(|str| str.replace("\\", "/")),
};
}
}
Expand Down

0 comments on commit c547fb9

Please sign in to comment.