branches2.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-02-04 22:23:52 -06:00
parent b22991b878
commit ad981dedbe

View File

@ -32,8 +32,9 @@ Branches2::clonepath(ghc::filesystem::path basepath_,
if(branch.path == basepath_)
continue;
rv = fs::clonepath(branch.path,basepath_,relpath_);
if(rv == 0)
return 0;
if(rv < 0)
continue;
return 0;
}
}