1
0
Fork 0

Avoid failing if COMPOSER env var is empty, refs #1720

pull/1718/merge
Jordi Boggiano 2013-03-21 16:00:45 +01:00
parent 10a7008fdf
commit a0a9536d90
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class Factory
public static function getComposerFile()
{
return getenv('COMPOSER') ?: 'composer.json';
return trim(getenv('COMPOSER')) ?: 'composer.json';
}
public static function createAdditionalStyles()