Skip to content

Commit

Permalink
Fixes CLI --help typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
shorowit committed Mar 3, 2023
1 parent fc854a4 commit 0e4af69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ int main(int argc, char* argv[]) {
experimentalApp->add_subcommand("ruby_version", "Returns the Ruby version used by the CLI")->group(versionGroupname)->callback([&rubyEngine]() {
rubyEngine->exec("puts RUBY_VERSION");
});
[[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Ruby version used by the CLI")
[[maybe_unused]] auto* python_versionCommand = experimentalApp->add_subcommand("python_version", "Returns the Python version used by the CLI")
->group(versionGroupname)
->callback([&pythonEngine]() { pythonEngine->exec("import sys; print(sys.version)"); });

Expand Down

0 comments on commit 0e4af69

Please sign in to comment.