Skip to content

Commit

Permalink
Fixed autoload path when installing standalone phpunit-randomizer
Browse files Browse the repository at this point in the history
  • Loading branch information
fiunchinho committed Aug 19, 2014
1 parent d3d3def commit bda3f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/phpunit-randomizer
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php

foreach (array(__DIR__ . '/../../../autoload.php', __DIR__ . '/vendor/autoload.php') as $file) {
foreach (array(__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php') as $file) {
if (file_exists($file)) {
define('PHPUNIT_COMPOSER_INSTALL', $file);
break;
Expand Down

0 comments on commit bda3f22

Please sign in to comment.