Skip to content

Commit

Permalink
Merge pull request #93 from adrianmoya/master
Browse files Browse the repository at this point in the history
Fixing path separator
  • Loading branch information
MarcelloDuarte committed Sep 1, 2012
2 parents 97b1abe + 718cca9 commit b3e6ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/phpspec.php
Expand Up @@ -184,7 +184,7 @@
require($vendor . "{$ds}autoload.php"); require($vendor . "{$ds}autoload.php");
$installation = COMPOSER_INSTALL; $installation = COMPOSER_INSTALL;
} else { } else {
$paths = explode(':', ini_get('include_path')); $paths = explode(PATH_SEPARATOR, ini_get('include_path'));
@require_once 'PHPSpec/Loader/UniversalClassLoader.php'; @require_once 'PHPSpec/Loader/UniversalClassLoader.php';
if (class_exists('PHPSpec\Loader\UniversalClassLoader')) { if (class_exists('PHPSpec\Loader\UniversalClassLoader')) {
$installation = PEAR_INSTALL; $installation = PEAR_INSTALL;
Expand Down

0 comments on commit b3e6ad8

Please sign in to comment.