Skip to content

Commit 6a44cfa

Browse files
committed
Do not stop on error in clean ui-tests
1 parent a27a557 commit 6a44cfa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

build_system/src/clean.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ fn clean_ui_tests() -> Result<(), String> {
7474
let path = Path::new(crate::BUILD_DIR)
7575
.join("rust/build/x86_64-unknown-linux-gnu/test/")
7676
.join(directory);
77-
run_command(&[&"find", &path, &"-name", &"stamp", &"-delete"], None)?;
77+
// The directory might not exist, so ignore the error.
78+
let _ = run_command(&[&"find", &path, &"-name", &"stamp", &"-delete"], None);
7879
}
7980
Ok(())
8081
}

0 commit comments

Comments
 (0)