fix: ignore vendor bin at transifex sync

```php
echo count(array_filter($translatableFiles, fn($v) => strpos($v, "vendor-bin")));
```
Output: 9320

After this change was found any entry with vendor-bin

```php
count(array_filter($translatableFiles, fn($v) => strpos($v, "vendor-bin")));
```
Output: 0

This could affect the translatable strings that is send do Transifex.

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos 2025-06-23 13:45:07 -03:00 committed by backportbot-libresign[bot]
parent b9eec7cee7
commit 834788fe5e

View file

@ -9,3 +9,4 @@ js/
node_modules/
tests/
vendor/
vendor-bin/