1
0
Fork 0

Fix regression in run-script/exec commands prompting when used with --list

pull/11169/head
Jordi Boggiano 2022-11-03 13:36:31 +01:00
parent 0fca3e5521
commit 7c1aa8e0ef
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ EOT
return;
}
if ($input->getArgument('binary') !== null) {
if ($input->getArgument('binary') !== null || $input->getOption('list')) {
return;
}

View File

@ -79,7 +79,7 @@ EOT
return;
}
if ($input->getArgument('script') !== null) {
if ($input->getArgument('script') !== null || $input->getOption('list')) {
return;
}