Skip to content

Commit

Permalink
Fixing path separator so it works on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmoya committed Sep 1, 2012
1 parent 97b1abe commit 718cca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/phpspec.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
require($vendor . "{$ds}autoload.php");
$installation = COMPOSER_INSTALL;
} else {
$paths = explode(':', ini_get('include_path'));
$paths = explode(PATH_SEPARATOR, ini_get('include_path'));
@require_once 'PHPSpec/Loader/UniversalClassLoader.php';
if (class_exists('PHPSpec\Loader\UniversalClassLoader')) {
$installation = PEAR_INSTALL;
Expand Down

0 comments on commit 718cca9

Please sign in to comment.