diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-03-23 17:00:51 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-03-23 17:08:18 +0100 |
commit | 480ba40a427f3c260fc5b99677b38d7003f0e888 (patch) | |
tree | 0f89f597585e0df71ea63cdc1eb08392195e3c6e /src | |
parent | 3497ec5fa892995691c8692cedce7b100a3af6bf (diff) | |
download | justbuild-480ba40a427f3c260fc5b99677b38d7003f0e888.tar.gz |
just-mr: extend self-description
Diffstat (limited to 'src')
-rw-r--r-- | src/other_tools/just_mr/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/other_tools/just_mr/main.cpp b/src/other_tools/just_mr/main.cpp index 290d6bcf..72dd7b79 100644 --- a/src/other_tools/just_mr/main.cpp +++ b/src/other_tools/just_mr/main.cpp @@ -94,7 +94,8 @@ void SetupSetupCommandArguments( [[nodiscard]] auto ParseCommandLineArguments(int argc, char const* const* argv) -> CommandLineArguments { - CLI::App app("just-mr"); + CLI::App app( + "just-mr, a multi-repository configuration tool and launcher for just"); app.option_defaults()->take_last(); auto* cmd_mrversion = app.add_subcommand( "mrversion", "Print version information in JSON format of this tool."); |