1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Handle SolverProblemException nicer

This commit is contained in:
Jordi Boggiano 2012-03-18 22:43:07 +01:00
parent e8bf6e9067
commit b12e73792c
2 changed files with 15 additions and 5 deletions

View file

@ -61,6 +61,6 @@ EOT
->setInstallSuggests($input->getOption('install-suggests'))
;
return $install->run();
return $install->run() ? 0 : 1;
}
}