-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modules: add command to list modules #1132
Conversation
3a3d7d8
to
7e7559a
Compare
Please, update commit message. Closes #1016
Closes #TNTP-1805 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
27dcb34
to
5977a15
Compare
7e7559a
to
847b7ca
Compare
5977a15
to
5e9e99b
Compare
847b7ca
to
52e964e
Compare
52e964e
to
f61d2a1
Compare
f61d2a1
to
650f927
Compare
Done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, but please, add an example of the output of the command.
650f927
to
f906678
Compare
Done. |
72d8dd9
to
88cfa5c
Compare
Closes #1016 Closes #TNTP-1805 @TarantoolBot document Title: new command to list modules. `tt modules list` is a new command to show available modules. It supports extra flags: * `--version` - to show information about module version. * `--path` - to show module executables path. **Usage Example**: Get simple list of modules with description. ```sh tt modules list ``` Can produce output like: ``` module1 - Description for module1 module2 - Description for module2 ``` Display modules version with executable entry point. ```sh tt modules list --version --path ``` Possible output: ``` 1.2.3 module1 - modules/modules1/command.sh v0.0.1 module2 - modules/modules2/main ```
88cfa5c
to
ae8e8de
Compare
It's part of
modules
support. Introducemodules list
sub-command.I didn't forget about (remove if it is not applicable):
(see documentation how to write a commit message)
(see example)
Related issues:
Closes #1016
Closes #TNTP-1805