Fix regression in run-script/exec commands prompting when used with --list
parent
0fca3e5521
commit
7c1aa8e0ef
|
@ -58,7 +58,7 @@ EOT
|
|||
return;
|
||||
}
|
||||
|
||||
if ($input->getArgument('binary') !== null) {
|
||||
if ($input->getArgument('binary') !== null || $input->getOption('list')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@ EOT
|
|||
return;
|
||||
}
|
||||
|
||||
if ($input->getArgument('script') !== null) {
|
||||
if ($input->getArgument('script') !== null || $input->getOption('list')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue