From a5f39f00e1de2ff7f39e1dd49d436464bf86ea45 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Fri, 27 Mar 2020 19:15:41 +0100 Subject: [PATCH] Fix regex for the dashboard --- bref | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bref b/bref index ff6913626..f1302eabc 100755 --- a/bref +++ b/bref @@ -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()) {