diff --git a/packages/framework/src/Console/Commands/ServeCommand.php b/packages/framework/src/Console/Commands/ServeCommand.php index 7bf82cdb48b..9558fa4f53b 100644 --- a/packages/framework/src/Console/Commands/ServeCommand.php +++ b/packages/framework/src/Console/Commands/ServeCommand.php @@ -156,8 +156,7 @@ protected function openInBrowser(): void if (! $process || $process->failed()) { $this->warn('Unable to open the site preview in the browser on your system:'); $this->line(sprintf(' %s', str_replace("\n", "\n ", $process ? $process->errorOutput() : "Missing suitable 'open' binary."))); + $this->newLine(); } - - $this->newLine(); } }