1
0
Fork 0

Fallback to include `vendor/.composer/autoload.php` for `bin/composer`

When Composer is a dependency for a project the `vendor/bin/composer`
script will not run as it is looking for `__DIR__.'/../vendor'` which
likely will not exist. What I believe is intended is for the script
to include the packages `vendor/.composer/autoload.php`.
pull/234/head
Beau Simensen 2012-01-19 22:24:50 -08:00
parent 0dc3832225
commit d7714983c3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
if (!@include __DIR__.'/../vendor/.composer/autoload.php') {
if ((!@include __DIR__.'/../vendor/.composer/autoload.php') and (!@include 'vendor/.composer/autoload.php')) {
die('You must set up the project dependencies, run the following commands:
wget http://getcomposer.org/composer.phar
php composer.phar install