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

This commit is contained in:
2024-08-24 17:10:51 -05:00
parent 8e39850558
commit 7f83401879

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})); .copy_to(utils::path::combine(to_path, {fd.cFileName}, true));
} }
} while (ret && (::FindNextFile(find, &fd) != 0)); } while (ret && (::FindNextFile(find, &fd) != 0));