From bfb4abfb56a1e71990d6860dfea34e77a6e14340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Fri, 2 Oct 2020 10:11:47 +0200 Subject: [PATCH] Fixed description of StatusCommand: It do list all changes in vendor, not only for "source" ones I tested it, and even with "dist" packages, the status command is able to find modified vendor (And that's amazing, thanks) --- src/Composer/Command/StatusCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/StatusCommand.php b/src/Composer/Command/StatusCommand.php index 6d836d2bf..6e07ed5d9 100644 --- a/src/Composer/Command/StatusCommand.php +++ b/src/Composer/Command/StatusCommand.php @@ -43,7 +43,7 @@ class StatusCommand extends BaseCommand { $this ->setName('status') - ->setDescription('Shows a list of locally modified packages, for packages installed from source.') + ->setDescription('Shows a list of locally modified packages.') ->setDefinition(array( new InputOption('verbose', 'v|vv|vvv', InputOption::VALUE_NONE, 'Show modified files for each directory that contains changes.'), ))