mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-15 04:10:14 +03:00
Clean up c_host.o renaming logic
This commit is contained in:
parent
b57f4b38fa
commit
017b53ce23
@ -132,15 +132,15 @@ pub fn rebuild_host(host_input_path: &Path) {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
validate_output("rust_host.o", "rm", output);
|
validate_output("rust_host.o", "rm", output);
|
||||||
} else {
|
} else if c_host_dest.exists() {
|
||||||
// Clean up rust_host.o
|
// Clean up c_host.o
|
||||||
let output = Command::new("mv")
|
let output = Command::new("mv")
|
||||||
.env_clear()
|
.env_clear()
|
||||||
.args(&[c_host_dest, host_dest])
|
.args(&[c_host_dest, host_dest])
|
||||||
.output()
|
.output()
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
validate_output("rust_host.o", "mv", output);
|
validate_output("c_host.o", "mv", output);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user