Skip to content

Commit

Permalink
Add newline
Browse files Browse the repository at this point in the history
  • Loading branch information
cerbero90 committed Jan 12, 2025
1 parent 40b99a8 commit ae754d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helpers/cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ function enumOutcome(string $enum, Closure $callback): bool
}

if ($succeeded) {
fwrite(STDOUT, "\e[48;2;163;230;53m\e[38;2;63;98;18m\e[1m DONE \e[0m {$enum}" . PHP_EOL);
fwrite(STDOUT, "\e[48;2;163;230;53m\e[38;2;63;98;18m\e[1m DONE \e[0m {$enum}" . PHP_EOL . PHP_EOL);
} else {
fwrite(STDERR, "\e[48;2;248;113;113m\e[38;2;153;27;27m\e[1m FAIL \e[0m {$enum} {$error}" . PHP_EOL);
fwrite(STDERR, "\e[48;2;248;113;113m\e[38;2;153;27;27m\e[1m FAIL \e[0m {$enum} {$error}" . PHP_EOL . PHP_EOL);
}

return $succeeded;
Expand Down

0 comments on commit ae754d1

Please sign in to comment.