Fix windows build

This commit is contained in:
nab138
2025-08-12 20:02:43 -04:00
parent 5af3ccc58d
commit f0974ca91d

View File

@@ -342,7 +342,7 @@ pub async fn sideload_app(
// Without this, zsign complains it can't find the provision file // Without this, zsign complains it can't find the provision file
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]
{ {
file.sync_all().map_err(|e| e.to_string())?; file.sync_all().map_err(|e| Error::Filesystem(e))?;
drop(file); drop(file);
} }