mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Fix detection of Xdebug for coverage
This commit is contained in:
parent
311910795a
commit
1d3725341a
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ class RoboFile extends \Robo\Tasks {
|
|||
return $php;
|
||||
} elseif (file_exists($dir."pcov.$ext")) {
|
||||
return "$php -d extension=pcov.$ext -d pcov.enabled=1 -d pcov.directory=$code";
|
||||
} elseif (file_exists($dir."pcov.$ext")) {
|
||||
} elseif (file_exists($dir."xdebug.$ext")) {
|
||||
return "$php -d zend_extension=xdebug.$ext";
|
||||
} else {
|
||||
if (IS_WIN) {
|
||||
|
|
Loading…
Reference in a new issue