diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/main/cli.cpp | 1 | ||||
-rw-r--r-- | src/other_tools/just_mr/utils.hpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/main/cli.cpp b/src/buildtool/main/cli.cpp index 19b965dd..b1b2f32f 100644 --- a/src/buildtool/main/cli.cpp +++ b/src/buildtool/main/cli.cpp @@ -24,6 +24,7 @@ auto SetupDescribeCommandArguments( gsl::not_null<CLI::App*> const& app, gsl::not_null<CommandLineArguments*> const& clargs) { SetupCommonArguments(app, &clargs->common); + SetupCacheArguments(app, &clargs->endpoint); SetupAnalysisArguments(app, &clargs->analysis, false); SetupLogArguments(app, &clargs->log); SetupDescribeArguments(app, &clargs->describe); diff --git a/src/other_tools/just_mr/utils.hpp b/src/other_tools/just_mr/utils.hpp index 36a03ddf..7928a7a8 100644 --- a/src/other_tools/just_mr/utils.hpp +++ b/src/other_tools/just_mr/utils.hpp @@ -72,7 +72,7 @@ std::map<std::string, JustSubCmdFlags> const kKnownJustSubcommands{ .client_auth = false}}, {"describe", {.config = true, - .build_root = false, + .build_root = true, .launch = false, .defines = true, .remote = false, |