Skip to content

Commit

Permalink
Fix plugin option all.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 26, 2024
1 parent 0677bba commit c09c7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Shell/AnnotationsShell.php
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ protected function getPaths(?string $type = null): array {
* @return array<string>
*/
protected function getPlugins(string $plugin): array {
if (strpos($plugin, '*') === false) {
if ($plugin !== 'all' && strpos($plugin, '*') === false) {
return [Plugin::path($plugin) => $plugin];
}

Expand Down

0 comments on commit c09c7f8

Please sign in to comment.