diff options
Diffstat (limited to 'src/other_tools/just_mr/setup.cpp')
-rw-r--r-- | src/other_tools/just_mr/setup.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/other_tools/just_mr/setup.cpp b/src/other_tools/just_mr/setup.cpp index 90070db1..6cd9462b 100644 --- a/src/other_tools/just_mr/setup.cpp +++ b/src/other_tools/just_mr/setup.cpp @@ -151,10 +151,14 @@ auto MultiRepoSetup(std::shared_ptr<Configuration> const& config, &import_to_git_map, &critical_git_op_map, common_args.jobs); - auto tree_id_git_map = CreateTreeIdGitMap(&critical_git_op_map, - common_args.git_path->string(), - *common_args.local_launcher, - common_args.jobs); + auto tree_id_git_map = + CreateTreeIdGitMap(&critical_git_op_map, + &import_to_git_map, + common_args.git_path->string(), + *common_args.local_launcher, + local_api ? &(*local_api) : nullptr, + remote_api ? &(*remote_api) : nullptr, + common_args.jobs); auto repos_to_setup_map = CreateReposToSetupMap(config, main, interactive, |