aboutsummaryrefslogtreecommitdiffstats
path: root/executor/files.h
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-11-26 10:59:51 +0100
committerDmitry Vyukov <dvyukov@google.com>2024-11-26 11:09:17 +0000
commitee69c8253b97c2faef05d0d4245cb7aa8155f4c6 (patch)
treed61ff69b373271be780462dd78a88552a1c46a9a /executor/files.h
parente9a9a9f23f2a13f697d9d9572d2d4a34369a0068 (diff)
executor: add Glob test
Diffstat (limited to 'executor/files.h')
-rw-r--r--executor/files.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/executor/files.h b/executor/files.h
index 23f06878e..7be826d0a 100644
--- a/executor/files.h
+++ b/executor/files.h
@@ -51,6 +51,7 @@ static std::vector<std::string> Glob(const std::string& pattern)
files.push_back(file);
}
globfree(&buf);
+ debug("glob %s resolved to %zu files\n", pattern.c_str(), files.size());
return files;
}