1
0
Fork 0

Simplify code

pull/5665/head
Jordi Boggiano 2016-09-29 08:40:03 +02:00 committed by GitHub
parent a294af3f16
commit 0c4cae056f
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class PathDownloader extends FileDownloader implements VcsCapableDownloaderInter
$allowedStrategies = array(self::STRATEGY_SYMLINK, self::STRATEGY_MIRROR);
$mirrorPathRepos = getenv('COMPOSER_MIRROR_PATH_REPOS');
if (true === (bool)$mirrorPathRepos) {
if ($mirrorPathRepos) {
$currentStrategy = self::STRATEGY_MIRROR;
}