Skip to content

Commit 913996b

Browse files
committed
Remove the match on ErrorKind::Other
It's a) superfluous and b) doesn't work any more.
1 parent 4459e72 commit 913996b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/bootstrap/clean.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ fn rm_rf(path: &Path) {
7676
fs::remove_dir(p).or_else(|e| {
7777
// Check for dir not empty on Windows
7878
#[cfg(windows)]
79-
if matches!(e.kind(), std::io::ErrorKind::Other)
80-
&& e.raw_os_error() == Some(145)
81-
{
79+
if e.raw_os_error() == Some(145) {
8280
return Ok(());
8381
}
8482

0 commit comments

Comments
 (0)