forked from TrueCloudLab/frostfs-node
[#578] gendoc: Remove flag shorthands
Make it harder to encounter conflicts in already existing commands. Because the command is executed once, I don't think the usability is worse. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
dca31e8888
commit
6bcba27757
2 changed files with 4 additions and 4 deletions
4
debian/rules
vendored
4
debian/rules
vendored
|
@ -12,8 +12,8 @@ override_dh_auto_install:
|
|||
echo $(DEB_BUILD_OPTIONS)
|
||||
dh_auto_install
|
||||
|
||||
bin/frostfs-adm gendoc -t man man/
|
||||
bin/frostfs-cli gendoc -t man man/
|
||||
bin/frostfs-adm gendoc --type man man/
|
||||
bin/frostfs-cli gendoc --type man man/
|
||||
|
||||
bin/frostfs-adm completion bash > debian/frostfs-adm.bash-completion
|
||||
bin/frostfs-cli completion bash > debian/frostfs-cli.bash-completion
|
||||
|
|
|
@ -93,9 +93,9 @@ In this case there is a number of helper functions which can be used:
|
|||
}
|
||||
|
||||
ff := gendocCmd.Flags()
|
||||
ff.StringP(gendocTypeFlag, "t", gendocMarkdown, "Type for the documentation ('md' or 'man')")
|
||||
ff.String(gendocTypeFlag, gendocMarkdown, "Type for the documentation ('md' or 'man')")
|
||||
ff.Int(depthFlag, 1, "If template is specified, unify all commands starting from depth in a single file. Default: 1.")
|
||||
ff.StringP(extensionFlag, "e", "", "If the template is specified, string to append to the output file names")
|
||||
ff.String(extensionFlag, "", "If the template is specified, string to append to the output file names")
|
||||
return gendocCmd
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue