diff --git a/src/git.rs b/src/git.rs index e7ec2d5..02175b7 100644 --- a/src/git.rs +++ b/src/git.rs @@ -172,10 +172,7 @@ impl From for LinkError { fn handle_file_exists(selff: &Link, tx_path: &Path, rx_path: &Path) -> Result { match rx_path.read_link() { - Ok(file) - if file.canonicalize().expect("failed to canonicalize file") - == tx_path.canonicalize().expect("failed to canonicalize path") => - { + Ok(file) if file.canonicalize()? == tx_path.canonicalize()? => { Err(LinkError::AlreadyLinked( tx_path.to_string_lossy().to_string(), rx_path.to_string_lossy().to_string(),