diff options
author | Maksim Denisov <denisov.maksim@huawei.com> | 2024-12-03 16:21:17 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-12-05 09:39:56 +0100 |
commit | cdd3a6a777a36ff98b60cf47c91281a69c39c4e2 (patch) | |
tree | 30eb5cf091ae42be9149d22eb37ae9657e2e6938 /src/buildtool/file_system/git_cas.cpp | |
parent | d9f39250d302152d19a0aacd76eabae7a013f1a8 (diff) | |
download | justbuild-cdd3a6a777a36ff98b60cf47c91281a69c39c4e2.tar.gz |
GitCAS: use the same call for openning repository as GitRepo does.
Diffstat (limited to 'src/buildtool/file_system/git_cas.cpp')
-rw-r--r-- | src/buildtool/file_system/git_cas.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buildtool/file_system/git_cas.cpp b/src/buildtool/file_system/git_cas.cpp index 81f03dfd..5a464dc0 100644 --- a/src/buildtool/file_system/git_cas.cpp +++ b/src/buildtool/file_system/git_cas.cpp @@ -146,7 +146,10 @@ auto GitCAS::OpenODB(std::filesystem::path const& repo_path) noexcept -> bool { { // lock as git_repository API has no thread-safety guarantees std::unique_lock lock{repo_mutex}; git_repository* repo = nullptr; - if (git_repository_open(&repo, repo_path.c_str()) != 0) { + if (git_repository_open_ext(&repo, + repo_path.c_str(), + GIT_REPOSITORY_OPEN_NO_SEARCH, + nullptr) != 0) { Logger::Log(LogLevel::Debug, "opening git repository {} failed with:\n{}", repo_path.string(), |