From c6429b8052d03de7146dc93fefe5c69b96438d33 Mon Sep 17 00:00:00 2001 From: Mike Madison <22753451+mikemadison13@users.noreply.github.com> Date: Mon, 21 Nov 2022 10:57:34 -0800 Subject: [PATCH] Fixes #4609 to refactor runserver command. (#4631) --- 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();