Skip to content

Commit

Permalink
Fix regex for the dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed Mar 27, 2020
1 parent fade433 commit a5f39f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bref
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ $app->command('dashboard [--host=] [--port=] [--profile=] [--stage=]', function
$animation->tick('Starting the dashboard');
usleep(100*1000);
$serverOutput = $process->getOutput();
$hasStarted = (strpos($serverOutput, 'Development Server started') !== false);
$hasStarted = (strpos($serverOutput, 'Development Server') !== false);
} while ($process->isRunning() && !$hasStarted);
$animation->clear();
if (!$process->isRunning()) {
Expand Down

0 comments on commit a5f39f0

Please sign in to comment.