Skip to content

Commit

Permalink
Merge pull request #9670 from bertdeblock/dont-emit-an-error-when-lin…
Browse files Browse the repository at this point in the history
…t-fix-fails
  • Loading branch information
rwjblue committed Oct 18, 2021
2 parents 1488c55 + f4de4e4 commit a333e97
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 a333e97

Please sign in to comment.