Skip to content

Commit

Permalink
Merge pull request #189 from jolicode/typo
Browse files Browse the repository at this point in the history
typo : fix typo on error message in functions.php
  • Loading branch information
pyrech authored Oct 9, 2023
2 parents c9f7d37 + 475f1ea commit c704c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function run(
}

if (0 !== $exitCode) {
log(sprintf('Command finished with and error (exit code=%d).', $process->getExitCode()), 'notice');
log(sprintf('Command finished with an error (exit code=%d).', $process->getExitCode()), 'notice');
if (!$context->allowFailure) {
if ($context->verbosityLevel->isVeryVerbose()) {
throw new ProcessFailedException($process);
Expand Down

0 comments on commit c704c40

Please sign in to comment.