fix part 2
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit

This commit is contained in:
2024-08-24 17:11:18 -05:00
parent 7f83401879
commit 24619d1c96

View File

@ -77,7 +77,7 @@ auto copy_directory_recursively(std::string from_path,
} else { } else {
ret = ret =
utils::file::file(utils::path::combine(from_path, {fd.cFileName})) utils::file::file(utils::path::combine(from_path, {fd.cFileName}))
.copy_to(utils::path::combine(to_path, {fd.cFileName}, true)); .copy_to(utils::path::combine(to_path, {fd.cFileName}), true);
} }
} while (ret && (::FindNextFile(find, &fd) != 0)); } while (ret && (::FindNextFile(find, &fd) != 0));