Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
apfelbox committed Sep 24, 2024
1 parent 91f6da6 commit bf77893
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Initializer/InitializeHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function runComposerInProject (array $cmd) : void
*/
public function runProcessInProject (array $cmd) : void
{
$this->io->writeln(sprintf(
$this->io->writeln(\sprintf(
"$> Running command <fg=blue>%s</>",
implode(" ", $cmd),
));
Expand All @@ -168,12 +168,12 @@ public function runProcessInProject (array $cmd) : void
);
$process->mustRun();

$output = trim(sprintf("%s\n%s", $process->getErrorOutput(), $process->getOutput()));
$output = trim(\sprintf("%s\n%s", $process->getErrorOutput(), $process->getOutput()));

if ("" !== $output)
{
$this->io->block(
trim(sprintf("%s\n%s", $process->getErrorOutput(), $process->getOutput())),
trim(\sprintf("%s\n%s", $process->getErrorOutput(), $process->getOutput())),
prefix: "",
);
}
Expand Down

0 comments on commit bf77893

Please sign in to comment.