fix(windows): write file differently for windows

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

View file

@ -44,14 +44,18 @@ pub async fn build_standalone<T: AsRef<Path> + Into<PathBuf>>(
patched_bin.append(&mut signature.clone());
// Write the compiled binary to file
OpenOptions::new()
.write(true)
.create(true)
.mode(0o770)
.open(output_path)
.await?
.write_all(&patched_bin)
.await?;
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?;
}
Ok(ExitCode::SUCCESS)
}