1
0
Fork 0

Merge pull request #539 from mvriel/installer-signature-fix

Added $this->io to the creation of composer installers
pull/546/head
Nils Adermann 2012-04-07 07:09:01 -07:00
commit 146215e167
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class InstallerInstaller extends LibraryInstaller
}
$extra = $package->getExtra();
$installer = new $class($this->vendorDir, $this->binDir, $this->downloadManager, $this->repository);
$installer = new $class($this->vendorDir, $this->binDir, $this->downloadManager, $this->repository, $this->io);
$this->installationManager->addInstaller($installer);
}
}