We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d00ab1c commit f53c6ddCopy full SHA for f53c6dd
packages/angular/cli/src/command-builder/schematics-command-module.ts
@@ -321,11 +321,11 @@ export abstract class SchematicsCommandModule
321
if (err instanceof UnsuccessfulWorkflowExecution) {
322
// "See above" because we already printed the error.
323
logger.fatal('The Schematic workflow failed. See above.');
324
-
325
- return 1;
326
} else {
327
- throw err;
+ logger.fatal(err.message);
328
}
+
+ return 1;
329
} finally {
330
unsubscribe();
331
0 commit comments