diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-02-01 15:28:19 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2024-02-01 15:45:03 +0100 |
commit | cbc46ba428500ac514ae26d5d3c1da6c9cb3c521 (patch) | |
tree | 97cf17f267eae775cb751981f69bddcd09ee60ab /src/buildtool/main/cli.cpp | |
parent | 154aa03ff485d821be515f84431bc220e0144694 (diff) | |
download | justbuild-cbc46ba428500ac514ae26d5d3c1da6c9cb3c521.tar.gz |
describe: support -R
... as, for absent repositories, we need to get the description from
the serve end point. As a consequence, also support -r and --compatible,
as the remote-execution endpoint needs to fit with the one for the
serve endpoint.
Diffstat (limited to 'src/buildtool/main/cli.cpp')
-rw-r--r-- | src/buildtool/main/cli.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buildtool/main/cli.cpp b/src/buildtool/main/cli.cpp index b1b2f32f..c4e51189 100644 --- a/src/buildtool/main/cli.cpp +++ b/src/buildtool/main/cli.cpp @@ -27,6 +27,9 @@ auto SetupDescribeCommandArguments( SetupCacheArguments(app, &clargs->endpoint); SetupAnalysisArguments(app, &clargs->analysis, false); SetupLogArguments(app, &clargs->log); + SetupServeEndpointArguments(app, &clargs->serve); + SetupExecutionEndpointArguments(app, &clargs->endpoint); + SetupCompatibilityArguments(app); SetupDescribeArguments(app, &clargs->describe); } |