1
0
Fork 0

Update error message now that --dev is default

Fixes #1970.
pull/1974/head
Robert (Jamie) Munro 2013-06-06 16:21:05 +02:00
parent 1a7f734bc7
commit 0ea3dbd9c0
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class Locker
if (isset($lockData['packages-dev'])) {
$lockedPackages = array_merge($lockedPackages, $lockData['packages-dev']);
} else {
throw new \RuntimeException('The lock file does not contain require-dev information, run install without --dev or run update to install those packages.');
throw new \RuntimeException('The lock file does not contain require-dev information, run install with the --no-dev option or run update to install those packages.');
}
}