From d6232ec6520b7972fead688800963b8a7dde8cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Poirotte?= Date: Thu, 23 Jul 2026 22:30:34 +0200 Subject: [PATCH] Fix help message when no packages are found The --select option expects the following format: --select extension=vendor/package But the help message lacked the "extension=" part. --- src/Installing/InstallForPhpProject/NoMatchingPackagesFound.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Installing/InstallForPhpProject/NoMatchingPackagesFound.php b/src/Installing/InstallForPhpProject/NoMatchingPackagesFound.php index 32bfd51f..2d1ee780 100644 --- a/src/Installing/InstallForPhpProject/NoMatchingPackagesFound.php +++ b/src/Installing/InstallForPhpProject/NoMatchingPackagesFound.php @@ -15,7 +15,7 @@ class NoMatchingPackagesFound extends RuntimeException public static function forExtension(ExtensionName $extensionName): self { return new self(sprintf( - 'PIE could not find any potential matches for %s; if you know which package to use, specify --select=vendor/package in the `pie install` options.', + 'PIE could not find any potential matches for %s; if you know which package to use, specify --select extension=vendor/package in the `pie install` options.', $extensionName->nameWithExtPrefix(), )); }