Skip to content

Commit 98a2e0f

Browse files
committed
cleanup
1 parent 0d26ab3 commit 98a2e0f

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/llvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ impl Step for OmpOffload {
945945
// subfolder, so that all the logic that processes our build artifacts (hopefully) also
946946
// automatically manages our artifacts in the subfolder.
947947
let out_dir = builder.llvm_out(target).join("offload-outdir");
948-
if std::fs::exists(&out_dir).is_ok_and(|x| x == false) {
948+
if std::fs::exists(&out_dir).is_ok_and(|x| !x) {
949949
std::fs::DirBuilder::new().create(&out_dir).unwrap();
950950
}
951951

0 commit comments

Comments
 (0)