Skip to content

Commit

Permalink
Merge branch 'release/v1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
zdenekdrahos committed May 28, 2015
2 parents c0f9c44 + 0fa5c06 commit eef64bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion phpqa
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#!/usr/bin/env php
<?php

require_once __DIR__ . "/vendor/autoload.php";
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
require_once __DIR__ . '/vendor/autoload.php';
} elseif (file_exists(__DIR__ . '/../../autoload.php')) {
require_once __DIR__ . '/../../autoload.php';
}

require_once __DIR__ . "/RoboFile.php";

$isNotToolsCommand = !(count($argv) >= 2 && $argv[1] == 'tools');
Expand Down

0 comments on commit eef64bb

Please sign in to comment.