Skip to content

Commit

Permalink
typo : fix typo on error message in functions.php
Browse files Browse the repository at this point in the history
  • Loading branch information
MarionLeHerisson committed Oct 9, 2023
1 parent c9f7d37 commit 475f1ea
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 475f1ea

Please sign in to comment.