diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2022-10-04 17:04:10 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2022-10-04 17:35:21 +0200 |
commit | d2a4864a942defc9a11d1f64725599f22a88bee1 (patch) | |
tree | 36c0b8e1ec4bcb045b9fa125f983cfb7fe26dfbb /src/buildtool/main/main.cpp | |
parent | 0ca76b495dfaa024dbe1b3e9fc1929e4ebfe8b4d (diff) | |
download | justbuild-d2a4864a942defc9a11d1f64725599f22a88bee1.tar.gz |
just: Fix version subcommand; Fix just section-1 man page
The version subcommand now has no expected command line options, as expected.
Also the version subcommand was missing from the man page synopsis.
Diffstat (limited to 'src/buildtool/main/main.cpp')
-rw-r--r-- | src/buildtool/main/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp index 557b10a3..d642f270 100644 --- a/src/buildtool/main/main.cpp +++ b/src/buildtool/main/main.cpp @@ -163,7 +163,6 @@ auto ParseCommandLineArguments(int argc, char const* const* argv) app.require_subcommand(1); CommandLineArguments clargs; - SetupDescribeCommandArguments(cmd_version, &clargs); SetupDescribeCommandArguments(cmd_describe, &clargs); SetupAnalyseCommandArguments(cmd_analyse, &clargs); SetupBuildCommandArguments(cmd_build, &clargs); |