mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
fix(windows): write file differently for windows
This commit is contained in:
parent
4bb0eba589
commit
6087069493
1 changed files with 12 additions and 8 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue