Skip to content

Commit

Permalink
test: ignore exit
Browse files Browse the repository at this point in the history
  • Loading branch information
g105b committed May 9, 2024
1 parent d2e5956 commit 1f753f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/CreateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function run(ArgumentValueList $arguments = null):void {

if($code = $process->getExitCode()) {
$this->writeLine("There was an error installing the blueprint (exit code $code)");
exit($code);
exit($code); // phpcs:ignore
}

$this->writeLine();
Expand Down

0 comments on commit 1f753f6

Please sign in to comment.