fix
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
Scott E. Graves 2024-10-31 16:49:17 -05:00
parent 38f5374e49
commit 0741e307cc

View File

@ -78,8 +78,8 @@ auto get_directory_files(std::string_view path, bool oldest_first,
try {
struct dirent *de{};
while ((de = readdir(root)) != nullptr) {
if (de->d_type == DT_DIR) {
std::string name{de->d_name};
if (de->d_type == DT_DIR) {
if (name == "." || name == ".." || not recursive) {
continue;
}
@ -101,7 +101,7 @@ auto get_directory_files(std::string_view path, bool oldest_first,
const auto add_to_lookup = [&](const std::string &lookup_path) {
if (lookup.find(lookup_path) == lookup.end()) {
struct stat st{};
struct stat st {};
stat(lookup_path.c_str(), &st);
#if defined(__APPLE__)
lookup[lookup_path] =