Skip to content

Commit

Permalink
remove seperator replace
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Oct 30, 2023
1 parent 4cab660 commit 8771672
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bin/src/utils/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ pub fn create_link(link: &PathBuf, target: &PathBuf) -> Result<(), Error> {
/// # Errors
/// - [`std::io::Error`] if the link could not be created
pub fn create_link(link: &PathBuf, target: &PathBuf) -> Result<(), Error> {
let target = target.replace('\\', "/");
trace!("symlink {:?} => {:?}", link, target);
std::os::unix::fs::symlink(target, link)?;
Ok(())
Expand Down

0 comments on commit 8771672

Please sign in to comment.