We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a63ecf9 commit 4e2114fCopy full SHA for 4e2114f
src/libstd/fs.rs
@@ -1777,7 +1777,8 @@ impl DirBuilder {
1777
fn create_dir_all(&self, path: &Path) -> io::Result<()> {
1778
match self.inner.mkdir(path) {
1779
Ok(()) => return Ok(()),
1780
- Err(ref e) if e.kind() == io::ErrorKind::AlreadyExists && path.is_dir() => return Ok(()),
+ Err(ref e)
1781
+ if e.kind() == io::ErrorKind::AlreadyExists && path.is_dir() => return Ok(()),
1782
Err(ref e) if e.kind() == io::ErrorKind::NotFound => {}
1783
Err(e) => return Err(e),
1784
}
0 commit comments