aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-04-25 08:00:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2024-04-25 08:00:21 +0200
commit5b9e70290b3d25042fdca119ca5a058d8b37f458 (patch)
tree1525a15dcedcb5c21533d91a0dbef103bfb0597b /libbuild2/dist
parentb05a3e9e671cf36640522f8d272647001dda5762 (diff)
Skip hidden filesystem entries when looking for subprojectsHEADmaster
Diffstat (limited to 'libbuild2/dist')
-rw-r--r--libbuild2/dist/operation.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/dist/operation.cxx b/libbuild2/dist/operation.cxx
index cd88eac..cfc90cf 100644
--- a/libbuild2/dist/operation.cxx
+++ b/libbuild2/dist/operation.cxx
@@ -156,7 +156,7 @@ namespace build2
{
const path& n (e.path ());
- if (n.string ()[0] != '.')
+ if (!n.empty () && n.string ().front () != '.')
try
{
if (e.type () == entry_type::directory) // Can throw.