Skip to content

Commit

Permalink
Don't emit an error when the lint:fix script fails post blueprint g…
Browse files Browse the repository at this point in the history
…eneration
  • Loading branch information
bertdeblock authored and rwjblue committed Oct 18, 2021
1 parent 1488c55 commit f4de4e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/tasks/generate-from-blueprint.js
Expand Up @@ -20,7 +20,6 @@ class GenerateTask extends Task {
try {
await lintFix.run(this.ui);
} catch (error) {
this.ui.writeError('Lint fix failed');
logger.error('Lint fix failed: %o', error);
}
}
Expand Down
1 change: 0 additions & 1 deletion lib/tasks/install-blueprint.js
Expand Up @@ -52,7 +52,6 @@ class InstallBlueprintTask extends Task {
try {
await lintFix.run(this.ui);
} catch (error) {
this.ui.writeError('Lint fix failed');
logger.error('Lint fix failed: %o', error);
}
}
Expand Down

0 comments on commit f4de4e4

Please sign in to comment.