Skip to content

Commit

Permalink
Merge branch 'hotfix/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
TravisCarden committed Apr 22, 2020
2 parents e7f613e + fc8609f commit b678643
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.0
v2.0.1
4 changes: 2 additions & 2 deletions src/Task/StaticAnalysisTool/PhpLintTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ public function execute(): void {
], $this->getPath());
}
catch (ProcessFailedException $e) {
// Parallel lint exits with a 255 status code if it doesn't find any PHP
// Parallel lint exits with a 254 status code if it doesn't find any PHP
// files to lint, which should not be considered a failure.
if ($e->getProcess()->getExitCode() == 255) {
if ($e->getProcess()->getExitCode() == 254) {
return;
}
throw new TaskFailureException();
Expand Down

0 comments on commit b678643

Please sign in to comment.