Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
made it possible to run the tests against a specific symfony version …
Browse files Browse the repository at this point in the history
…when testing locally
  • Loading branch information
lsmith77 committed Dec 14, 2011
1 parent 960935c commit be16bdf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vendor/vendors.php
Expand Up @@ -11,6 +11,10 @@
*/
set_time_limit(0);

if (isset($argv[1])) {
$_SERVER['SYMFONY_VERSION'] = $argv[1];
}

$vendorDir = __DIR__;
$deps = array(
array('symfony', 'http://github.com/symfony/symfony', isset($_SERVER['SYMFONY_VERSION']) ? $_SERVER['SYMFONY_VERSION'] : 'origin/master'),
Expand Down

0 comments on commit be16bdf

Please sign in to comment.