Browse Source

Fix lock file out of sync warning, fixes #1307

Jordi Boggiano 12 years ago
parent
commit
c0e75e5d24
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Installer.php

+ 1 - 1
src/Composer/Installer.php

@@ -292,7 +292,7 @@ class Installer
             $this->io->write('<info>Installing '.($devMode ? 'dev ': '').'dependencies from lock file</info>');
 
             if (!$this->locker->isFresh() && !$devMode) {
-                $this->io->write('<warning>Your lock file is out of sync with your composer.json, run "composer.phar update" to update dependencies</warning>');
+                $this->io->write('<warning>Warning: The lock file is not up to date with the latest changes in composer.json, you may be getting outdated dependencies, run update to update them.</warning>');
             }
 
             foreach ($lockedRepository->getPackages() as $package) {