Skip to content

Commit

Permalink
build: update ng cli schema generator to correctly show errors
Browse files Browse the repository at this point in the history
(cherry picked from commit 7ec7c19)
  • Loading branch information
iamvasiliev143 authored and filipesilva committed Oct 27, 2021
1 parent cce88c2 commit e1feaad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ng_cli_schema_generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ if (require.main === module) {
generate(inPath, outPath);
} catch (error) {
console.error('An error happened:');
console.error(err);
console.error(error);
process.exit(127);
}
}
Expand Down

0 comments on commit e1feaad

Please sign in to comment.