diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-11-03 11:32:41 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-11-14 13:35:01 +0100 |
commit | e1cb494e522d352f8d06d4f210a4d1dfbf3a890c (patch) | |
tree | 677cf3f35943f6241ca2e26d1b80a77989b60f58 /src/other_tools/just_mr/cli.hpp | |
parent | 180abedbc498bd8b5efc19ad068bc0a5704559b2 (diff) | |
download | justbuild-e1cb494e522d352f8d06d4f210a4d1dfbf3a890c.tar.gz |
just-mr: Parse mirrors specification from checkout locations file
Diffstat (limited to 'src/other_tools/just_mr/cli.hpp')
-rw-r--r-- | src/other_tools/just_mr/cli.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/other_tools/just_mr/cli.hpp b/src/other_tools/just_mr/cli.hpp index adc72578..0031cd4e 100644 --- a/src/other_tools/just_mr/cli.hpp +++ b/src/other_tools/just_mr/cli.hpp @@ -29,6 +29,7 @@ #include "src/buildtool/common/user_structs.hpp" #include "src/buildtool/execution_api/local/config.hpp" #include "src/buildtool/logging/log_level.hpp" +#include "src/other_tools/just_mr/mirrors.hpp" #include "src/other_tools/just_mr/utils.hpp" /// \brief Arguments common to all just-mr subcommands @@ -38,6 +39,7 @@ struct MultiRepoCommonArguments { std::optional<std::filesystem::path> checkout_locations_file{std::nullopt}; std::vector<std::string> explicit_distdirs{}; LocalPathsPtr just_mr_paths = std::make_shared<LocalPaths>(); + MirrorsPtr alternative_mirrors = std::make_shared<Mirrors>(); std::optional<std::vector<std::string>> local_launcher{std::nullopt}; CAInfoPtr ca_info = std::make_shared<CAInfo>(); std::optional<std::filesystem::path> just_path{std::nullopt}; |