1
0
Fork 0

[Command] fixed typo in "self-update" command class and added a "selfupdate" alias for the command.

pull/937/head
Hugo Hamon 2012-07-21 15:33:07 +02:00
parent 6fef956677
commit 33306250f0
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ class SelfUpdateCommand extends Command
{
$this
->setName('self-update')
->setAliases(array('selfupdate'))
->setDescription('Updates composer.phar to the latest version.')
->setHelp(<<<EOT
The <info>self-update</info> command checks getcomposer.org for newer
@ -64,7 +65,7 @@ EOT
throw $e;
}
unlink($tempFilename);
$output->writeln('<error>The download is corrupt ('.$e->getMessage().').</error>');
$output->writeln('<error>The download is corrupted ('.$e->getMessage().').</error>');
$output->writeln('<error>Please re-run the self-update command to try again.</error>');
}
} else {