updated build system
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2024-10-19 11:39:55 -05:00
parent f9e2e72d84
commit 8feb244dc9
3 changed files with 19 additions and 15 deletions

View File

@@ -112,9 +112,9 @@ auto directory::copy_to(std::string_view new_path,
function_name,
"failed to copy directory",
"not implemented",
path_,
new_path,
utils::string::from_bool(overwrite),
new_path,
path_,
});
} catch (const std::exception &e) {
utils::error::handle_exception(function_name, e);
@@ -381,8 +381,8 @@ auto directory::move_to(std::string_view new_path) -> bool {
function_name,
"failed to move directory",
"not implemented",
path_,
new_path,
path_,
});
} catch (const std::exception &e) {
utils::error::handle_exception(function_name, e);