mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
make an inline expect triggered by a top-level expect work
This commit is contained in:
parent
39a90ec32d
commit
41ad915c35
5 changed files with 84 additions and 40 deletions
|
@ -613,7 +613,8 @@ pub fn rebuild_host(
|
|||
|
||||
// Clean up c_host.o
|
||||
if c_host_dest.exists() {
|
||||
std::fs::remove_file(c_host_dest).unwrap();
|
||||
// there can be a race condition on this file cleanup
|
||||
let _ = std::fs::remove_file(c_host_dest);
|
||||
}
|
||||
}
|
||||
} else if rust_host_src.exists() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue