diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-15 17:12:15 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-17 16:27:50 +0100 |
commit | 65944566d8d3ae81d3dc3acb8c82944f5698ca5d (patch) | |
tree | 9700c15732d21dc03fd2f33c600e2ead80694c2c /src/other_tools/ops_maps/git_update_map.cpp | |
parent | ebe7695ee5803dd3c2bb4f22f5e12d776c985d56 (diff) | |
download | justbuild-65944566d8d3ae81d3dc3acb8c82944f5698ca5d.tar.gz |
structure cleanup: move remote operations of GitRepo to other_tools...
...in order to not include unwanted dependencies in just proper.
The new class extends the GitRepo class used for just's Git tree
operations and gets used in all of just-mr's async maps.
Diffstat (limited to 'src/other_tools/ops_maps/git_update_map.cpp')
-rw-r--r-- | src/other_tools/ops_maps/git_update_map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/other_tools/ops_maps/git_update_map.cpp b/src/other_tools/ops_maps/git_update_map.cpp index f2f6c3e5..c68d6f94 100644 --- a/src/other_tools/ops_maps/git_update_map.cpp +++ b/src/other_tools/ops_maps/git_update_map.cpp @@ -27,7 +27,7 @@ auto CreateGitUpdateMap(GitCASPtr const& git_cas, std::size_t jobs) auto /* unused */, auto const& key) { // perform git update commit - auto git_repo = GitRepo::Open(git_cas); // wrap the tmp odb + auto git_repo = GitRepoRemote::Open(git_cas); // wrap the tmp odb if (not git_repo) { (*logger)( fmt::format("Failed to open tmp Git repository for remote {}", |