From fd716479f4d6d19366fdddb2db1566a3a74e6144 Mon Sep 17 00:00:00 2001 From: Mike Madison Date: Wed, 16 Nov 2022 07:50:08 -0800 Subject: [PATCH] Fixes #4609 to refactor runserver command. --- src/Robo/Commands/Tests/ServerCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Robo/Commands/Tests/ServerCommand.php b/src/Robo/Commands/Tests/ServerCommand.php index ef2d1442c..dbdfc4dee 100644 --- a/src/Robo/Commands/Tests/ServerCommand.php +++ b/src/Robo/Commands/Tests/ServerCommand.php @@ -54,7 +54,7 @@ public function launchWebServer() { /** @var \Acquia\Blt\Robo\Common\Executor $executor */ $executor = $this->getContainer()->get('executor'); $result = $executor - ->drush("runserver --quiet --uri=$this->serverUrl > $log_file 2>&1") + ->drush("runserver --quiet $this->serverUrl > $log_file 2>&1") ->background(TRUE) ->printOutput(TRUE) ->run();