From caed83d400b70ac5cd1d246c8cfdf1f9a5f888fe Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Thu, 9 Dec 2021 14:39:30 +0000 Subject: Add reminder to match the error kind once ` DirectoryNotEmpty` is stabilized --- src/bootstrap/clean.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/bootstrap') diff --git a/src/bootstrap/clean.rs b/src/bootstrap/clean.rs index 7b8ce12bb4f..3b73dc1c7df 100644 --- a/src/bootstrap/clean.rs +++ b/src/bootstrap/clean.rs @@ -75,6 +75,8 @@ fn rm_rf(path: &Path) { do_op(path, "remove dir", |p| { fs::remove_dir(p).or_else(|e| { // Check for dir not empty on Windows + // FIXME: Once `ErrorKind::DirectoryNotEmpty` is stabilized, + // match on `e.kind()` instead. #[cfg(windows)] if e.raw_os_error() == Some(145) { return Ok(()); -- cgit 1.4.1-3-g733a5