diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2025-04-17 16:56:57 +0200 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2025-04-22 13:50:57 +0200 |
commit | 8b57548de9836fce3663b99d0140146f12668e8c (patch) | |
tree | 59c1f554ac15bb64fa7be2789bd810f42e616c61 /src/utils/cpp | |
parent | d65d711f844224dcf9215c52be8f69fd2885adfc (diff) | |
download | justbuild-8b57548de9836fce3663b99d0140146f12668e8c.tar.gz |
FileSystemManager: Always remove directories recursively
Diffstat (limited to 'src/utils/cpp')
-rw-r--r-- | src/utils/cpp/tmp_dir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/cpp/tmp_dir.cpp b/src/utils/cpp/tmp_dir.cpp index 8d6e0724..9a38aca2 100644 --- a/src/utils/cpp/tmp_dir.cpp +++ b/src/utils/cpp/tmp_dir.cpp @@ -93,5 +93,5 @@ auto TmpDir::CreateImpl(TmpDir::Ptr parent, TmpDir::~TmpDir() noexcept { // try to remove the tmp dir and all its content - std::ignore = FileSystemManager::RemoveDirectory(tmp_dir_, true); + std::ignore = FileSystemManager::RemoveDirectory(tmp_dir_); } |