Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information