1
0
Fork 0

Fix run-script --list failing to handle native script handlers, fixes #7069

pull/7096/merge
Jordi Boggiano 2018-04-12 10:39:18 +02:00
parent 4bddcd7124
commit ec9ba46c5f
1 changed files with 7 additions and 3 deletions

View File

@ -114,10 +114,14 @@ EOT
$io->writeError('<info>scripts:</info>');
$table = array();
foreach ($scripts as $name => $script) {
$cmd = $this->getApplication()->find($name);
$description = '';
if ($cmd instanceof ScriptAliasCommand) {
$description = $cmd->getDescription();
try {
$cmd = $this->getApplication()->find($name);
if ($cmd instanceof ScriptAliasCommand) {
$description = $cmd->getDescription();
}
} catch (\Symfony\Component\Console\Exception\CommandNotFoundException $e) {
// ignore scripts that have no command associated, like native Composer script listeners
}
$table[] = array(' '.$name, $description);
}