We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27a557 commit 6a44cfaCopy full SHA for 6a44cfa
1 file changed
build_system/src/clean.rs
@@ -74,7 +74,8 @@ fn clean_ui_tests() -> Result<(), String> {
74
let path = Path::new(crate::BUILD_DIR)
75
.join("rust/build/x86_64-unknown-linux-gnu/test/")
76
.join(directory);
77
- run_command(&[&"find", &path, &"-name", &"stamp", &"-delete"], None)?;
+ // The directory might not exist, so ignore the error.
78
+ let _ = run_command(&[&"find", &path, &"-name", &"stamp", &"-delete"], None);
79
}
80
Ok(())
81
0 commit comments