Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(macos): resolve type mismatch in sd open
Convert std::io::Error to anyhow::Error when opening destination on macOS without authopen feature.

Signed-off-by: Sen <kawkoi@proton.me>
  • Loading branch information
sengmonkham committed Jan 22, 2026
commit bab38019753369830704fda9e71bc892490eb109
2 changes: 1 addition & 1 deletion bb-flasher-sd/src/pal/macos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub(crate) async fn open(dst: &Path) -> Result<File> {
.create(false)
.open(dst)
.await
.map_err(|e| Error::FailedToOpenDestination { source: e })?
.map_err(|e| Error::FailedToOpenDestination { source: e.into() })?
.into_std()
.await;

Expand Down