diff options
-rw-r--r-- | libbutl/filesystem.ixx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/filesystem.ixx b/libbutl/filesystem.ixx index 8aed4d7..a0ddc22 100644 --- a/libbutl/filesystem.ixx +++ b/libbutl/filesystem.ixx @@ -14,7 +14,7 @@ namespace butl inline bool file_empty (const path& f) { - auto p (path_entry (f)); + auto p (path_entry (f, true /* follow_symlinks */)); if (p.first && p.second.type == entry_type::regular) return p.second.size == 0; |