updated build system
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
2024-10-19 11:33:28 -05:00
parent 2fb53e34af
commit 32ef8ba3c3
3 changed files with 10 additions and 3 deletions

View File

@ -216,7 +216,8 @@ auto smb_file::move_to(std::string_view new_path) -> bool {
throw utils::error::create_exception({
function_name,
"failed to connect to share",
path_std::to_string(res),
path_,
std::to_string(res),
share_name_,
});
}
@ -381,7 +382,8 @@ auto smb_file::remove() -> bool {
throw utils::error::create_exception({
function_name,
"failed to connect to share",
path_std::to_string(res),
path_,
std::to_string(res),
share_name_,
});
}