mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 13:08:48 +01:00
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:
parent
2dd456bf39
commit
57c67e110d
1 changed files with 1 additions and 0 deletions
|
|
@ -9,3 +9,4 @@ js/
|
|||
node_modules/
|
||||
tests/
|
||||
vendor/
|
||||
vendor-bin/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue