1
0
Fork 0

Fix message when updating a package installed from source

pull/668/merge
Jordi Boggiano 2012-05-09 17:41:43 +02:00
parent 5959493679
commit 2ca488f030
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ abstract class VcsDownloader implements DownloaderInterface
throw new \InvalidArgumentException('Package '.$target->getPrettyName().' is missing reference information'); throw new \InvalidArgumentException('Package '.$target->getPrettyName().' is missing reference information');
} }
$this->io->write(" - Installing <info>" . $target->getName() . "</info> (<comment>" . $target->getPrettyVersion() . "</comment>)"); $this->io->write(" - Updating <info>" . $target->getName() . "</info> (<comment>" . $target->getPrettyVersion() . "</comment>)");
$this->enforceCleanDirectory($path); $this->enforceCleanDirectory($path);
$this->doUpdate($initial, $target, $path); $this->doUpdate($initial, $target, $path);
$this->io->write(''); $this->io->write('');