Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Mar 21, 2024
1 parent e3dc2d7 commit 7f7eb23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/rattler/src/install/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ fn reflink_to_destination(
Err(e) if e.kind() == ErrorKind::Unsupported && !allow_hard_links => {
return copy_to_destination(source_path, destination_path)
}
Err(e) => {
Err(_) => {
return if allow_hard_links {
hardlink_to_destination(source_path, destination_path)
} else {
Expand Down

0 comments on commit 7f7eb23

Please sign in to comment.