Skip to content

Commit

Permalink
Merge pull request #188 from luispabon/master
Browse files Browse the repository at this point in the history
Fix workers crashing when we're on a filesystem path with spaces
  • Loading branch information
julianseeger committed Dec 2, 2015
2 parents 834e76b + 243ea0e commit 0d4459f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ParaTest/Runners/PHPUnit/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function start($wrapperBinary, $token = 1, $uniqueToken = null)
if ($uniqueToken) {
$bin .= "UNIQUE_TEST_TOKEN=$uniqueToken ";
}
$bin .= "exec $wrapperBinary";
$bin .= "exec \"$wrapperBinary\"";
$pipes = array();
$this->proc = proc_open($bin, self::$descriptorspec, $pipes);
$this->pipes = $pipes;
Expand Down

0 comments on commit 0d4459f

Please sign in to comment.