summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/buildtool/common/cli.hpp2
-rw-r--r--src/other_tools/just_mr/cli.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/buildtool/common/cli.hpp b/src/buildtool/common/cli.hpp
index a1438400..bdcc5716 100644
--- a/src/buildtool/common/cli.hpp
+++ b/src/buildtool/common/cli.hpp
@@ -407,7 +407,7 @@ static inline auto SetupEndpointArguments(
static inline auto SetupServeEndpointArguments(
gsl::not_null<CLI::App*> const& app,
gsl::not_null<ServeArguments*> const& clargs) {
- app->add_option("--remote-serve-address",
+ app->add_option("-R,--remote-serve-address",
clargs->remote_serve_address,
"Address of the serve service.")
->type_name("NAME:PORT");
diff --git a/src/other_tools/just_mr/cli.hpp b/src/other_tools/just_mr/cli.hpp
index 0031cd4e..c33d30d0 100644
--- a/src/other_tools/just_mr/cli.hpp
+++ b/src/other_tools/just_mr/cli.hpp
@@ -203,7 +203,7 @@ static inline void SetupMultiRepoCommonArguments(
"At increased computational effort, be compatible with the original "
"remote build execution protocol. As the change affects identifiers, "
"the flag must be used consistently for all related invocations.");
- app->add_option("--remote-serve-address",
+ app->add_option("-R,--remote-serve-address",
clargs->remote_serve_address,
"Address of a remote 'just serve' service.")
->type_name("NAME:PORT");