We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8ddfbb commit 37d1a43Copy full SHA for 37d1a43
packages/angular/cli/models/schematic-command.ts
@@ -100,11 +100,10 @@ export abstract class SchematicCommand<
100
101
public async printHelp(options: T) {
102
await super.printHelp(options);
103
- const schematicNames = Object.keys(this.description.suboptions || {});
104
-
105
- await super.printHelpOptions();
106
this.logger.info('');
107
+ const schematicNames = Object.keys(this.description.suboptions || {});
+
108
if (this.description.suboptions) {
109
if (schematicNames.length > 1) {
110
this.logger.info('Available Schematics:');
0 commit comments