Skip to content

Commit

Permalink
Fixes #4609 to refactor runserver command. (#4631)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemadison13 authored Nov 21, 2022
1 parent 9c3cfca commit c6429b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Robo/Commands/Tests/ServerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit c6429b8

Please sign in to comment.