Skip to content

Commit 691ce1d

Browse files
committed
fix(Path): scoped temp directories use llvm's remove_directories
1 parent 1259131 commit 691ce1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Support/Path.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ ScopedTempDirectory::
488488
~ScopedTempDirectory() {
489489
if (ok_)
490490
{
491-
llvm::sys::fs::remove(path_);
491+
llvm::sys::fs::remove_directories(path_);
492492
}
493493
}
494494

0 commit comments

Comments
 (0)