CommandPrepare constructor
CommandPrepare(
- String cliTitle,
- ConsolePrinter consolePrinter
Implementation
CommandPrepare(super.cliTitle, super.consolePrinter) {
argParser.addOption(
'directory',
abbr: 'd',
help: 'Template source directory.',
valueHelp: './template_source_dir|template.zip|template.tar.gz',
);
argParser.addOption(
'output',
abbr: 'o',
help: 'Template output file.',
valueHelp: 'template.yaml|template.json|template.zip|template.tar.gz',
);
}