aboutsummaryrefslogtreecommitdiff
path: root/libbutl/filesystem.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/filesystem.ixx')
-rw-r--r--libbutl/filesystem.ixx4
1 files changed, 3 insertions, 1 deletions
diff --git a/libbutl/filesystem.ixx b/libbutl/filesystem.ixx
index 5ac5d97..c9e3997 100644
--- a/libbutl/filesystem.ixx
+++ b/libbutl/filesystem.ixx
@@ -29,7 +29,9 @@ namespace butl
inline rmdir_status
try_rmdir_r (const dir_path& p, bool ignore_error)
{
- bool e (dir_exists (p)); //@@ What if it exists but is not a directory?
+ //@@ What if it exists but is not a directory?
+ //
+ bool e (dir_exists (p, ignore_error));
if (e)
rmdir_r (p, true, ignore_error);