Skip to content

Commit f76c3b7

Browse files
committed
replace remove_dir with remove_dir_all in helpers::symlink_dir
When using `symlink_dir`, it first removes the existing link with `remove_dir`. However, if the path isn't a link and contains files, `remove_dir` fails with "DirectoryNotEmpty", which causes the symbolic linking to fail as well. We have this problem on linking 'rustlib/rust' because it contains files as an actual directory. Signed-off-by: onur-ozkan <[email protected]>
1 parent e794b0f commit f76c3b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/utils/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pub fn symlink_dir(config: &Config, original: &Path, link: &Path) -> io::Result<
135135
if config.dry_run() {
136136
return Ok(());
137137
}
138-
let _ = fs::remove_dir(link);
138+
let _ = fs::remove_dir_all(link);
139139
return symlink_dir_inner(original, link);
140140

141141
#[cfg(not(windows))]

0 commit comments

Comments
 (0)