1
0
Fork 0

Fix minor error msg issue

pull/11766/head
Jordi Boggiano 2023-12-20 15:16:12 +01:00
parent 86cd364901
commit c8f1028ef9
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ EOT
if (PlatformRepository::isPlatformPackage($packageFilter) && !$input->getOption('platform')) { if (PlatformRepository::isPlatformPackage($packageFilter) && !$input->getOption('platform')) {
$hint .= ', try using --platform (-p) to show platform packages'; $hint .= ', try using --platform (-p) to show platform packages';
} }
if (!$input->getOption('all')) { if (!$input->getOption('all') && !$input->getOption('available')) {
$hint .= ', try using --available (-a) to show all available packages'; $hint .= ', try using --available (-a) to show all available packages';
} }