Skip to content

Commit

Permalink
chore(launchpad): conflict resolved after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzi committed Aug 29, 2024
1 parent dded201 commit 6a9c131
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-launchpad/src/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ pub fn get_primary_mount_point_name() -> Result<String> {

available_drives
.iter()
.find(|(_, mount_point, _)| mount_point == &primary_mount_point)
.map(|(name, _, _)| name.clone())
.find(|(_, mount_point, _, _)| mount_point == &primary_mount_point)
.map(|(name, _, _, _)| name.clone())
.ok_or_else(|| eyre!("Unable to find the name of the primary mount point"))
}

Expand Down

0 comments on commit 6a9c131

Please sign in to comment.