fix: conditionally compile fs writing system for windows

This commit is contained in:
Erica Marigold 2023-11-23 11:17:10 +05:30
parent 6087069493
commit cf2f93d480
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -44,18 +44,18 @@ pub async fn build_standalone<T: AsRef<Path> + Into<PathBuf>>(
patched_bin.append(&mut signature.clone());
// Write the compiled binary to file
if cfg!(unix) {
OpenOptions::new()
.write(true)
.create(true)
.mode(0o770)
.open(output_path)
.await?
.write_all(&patched_bin)
.await?;
} else if cfg!(windows) {
fs::write(output_path, &patched_bin).await?;
}
#[cfg(not(target_os = "windows"))]
OpenOptions::new()
.write(true)
.create(true)
.mode(0o770)
.open(&output_path)
.await?
.write_all(&patched_bin)
.await?;
#[cfg(target_os = "windows")]
fs::write(&output_path, &patched_bin).await?;
Ok(ExitCode::SUCCESS)
}