Skip to content

Commit

Permalink
PHPUnit commands are now foreached instead of separated by a semicolo…
Browse files Browse the repository at this point in the history
…n, Windows doesn't support the semicolon.
  • Loading branch information
Jelmer Schreuder committed Sep 9, 2011
1 parent 08f3f48 commit 00044bb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion classes/command.php
Expand Up @@ -139,7 +139,10 @@ public static function init($args)
// Respect the coverage-html option
\Cli::option('coverage-html') and $command .= ' --coverage-html '.\Cli::option('coverage-html');

passthru($command);
foreach(explode(';', $command) as $c)
{
passthru($c);
}

break;

Expand Down

0 comments on commit 00044bb

Please sign in to comment.