Skip to content

Commit

Permalink
Merge pull request #48 from cegento/patch-1
Browse files Browse the repository at this point in the history
Optimization: Checking multiple modules faster
  • Loading branch information
jissereitsma authored Jan 10, 2024
2 parents bea478b + f42315a commit 22ebd6d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Scan class dependencies for `@since` and double-check if this minimum version ma
## Tip: Check multiple modules
You can quickly check upon multiple modules with a command like this:

bin/magento mod:st --enabled | grep Yireo_ | while read MODULE ; do
echo "Checking $MODULE"
bin/magento yireo_extensionchecker:scan --module $MODULE --hide-deprecated 1
done
```bash
bin/magento yireo_extensionchecker:scan --module $(bin/magento module:status --enabled | grep -e Yireo_ | awk '{printf "%s%s",sep,$0; sep=","} END{print""}') --hide-needless 1 --hide-deprecated 1
```

0 comments on commit 22ebd6d

Please sign in to comment.