diff options
Diffstat (limited to 'src/other_tools/just_mr/cli.hpp')
-rw-r--r-- | src/other_tools/just_mr/cli.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/other_tools/just_mr/cli.hpp b/src/other_tools/just_mr/cli.hpp index bcd5302a..1a77bc62 100644 --- a/src/other_tools/just_mr/cli.hpp +++ b/src/other_tools/just_mr/cli.hpp @@ -92,6 +92,10 @@ struct MultiRepoRemoteAuthArguments { std::optional<std::filesystem::path> tls_client_key{std::nullopt}; }; +struct ForwardOnlyArguments { + std::vector<std::string> remote_execution_properties{}; +}; + enum class SubCommand { kUnknown, kMRVersion, @@ -112,6 +116,7 @@ struct CommandLineArguments { MultiRepoUpdateArguments update; MultiRepoJustSubCmdsArguments just_cmd; MultiRepoRemoteAuthArguments auth; + ForwardOnlyArguments launch_fwd; }; static inline void SetupMultiRepoCommonArguments( |