summaryrefslogtreecommitdiff
path: root/src/other_tools/just_mr/main.cpp
diff options
context:
space:
mode:
authorPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-03-07 16:47:24 +0100
committerPaul Cristian Sarbu <paul.cristian.sarbu@huawei.com>2023-03-08 15:50:46 +0100
commit5bb63f0113a3fa9b54616fec3d97ac55fd1849d2 (patch)
tree7faab01c50e43b0140bb7b46d917646a6369e77a /src/other_tools/just_mr/main.cpp
parentfdac71b46721818f8656abeb5ae8bfee5f8feceb (diff)
downloadjustbuild-5bb63f0113a3fa9b54616fec3d97ac55fd1849d2.tar.gz
Just-MR: Add logic for SSL verification during archive fetch
Diffstat (limited to 'src/other_tools/just_mr/main.cpp')
-rw-r--r--src/other_tools/just_mr/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/other_tools/just_mr/main.cpp b/src/other_tools/just_mr/main.cpp
index 52cfe09a..787483ba 100644
--- a/src/other_tools/just_mr/main.cpp
+++ b/src/other_tools/just_mr/main.cpp
@@ -794,6 +794,7 @@ void DefaultReachableRepositories(
// create async maps
auto content_cas_map = CreateContentCASMap(arguments.common.just_mr_paths,
+ arguments.common.ca_info,
arguments.common.jobs);
auto repo_fetch_map =
CreateRepoFetchMap(&content_cas_map, *fetch_dir, arguments.common.jobs);
@@ -1118,6 +1119,7 @@ void DefaultReachableRepositories(
auto crit_git_op_ptr = std::make_shared<CriticalGitOpGuard>();
auto critical_git_op_map = CreateCriticalGitOpMap(crit_git_op_ptr);
auto content_cas_map = CreateContentCASMap(arguments.common.just_mr_paths,
+ arguments.common.ca_info,
arguments.common.jobs);
auto import_to_git_map =
CreateImportToGitMap(&critical_git_op_map, arguments.common.jobs);