Browse Source

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

Hugo Hamon 12 years ago
parent
commit
33306250f0
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Composer/Command/SelfUpdateCommand.php

+ 2 - 1
src/Composer/Command/SelfUpdateCommand.php

@@ -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 {