1
0
mirror of https://github.com/Prowlarr/Indexers.git synced 2026-04-18 07:36:10 +01:00

Fixed: enable globstar for recursive Python file validation

This commit is contained in:
ServarrAdmin
2025-08-15 23:27:36 -05:00
committed by bakerboy448
parent 65784ffba7
commit 7968139ba8

View File

@@ -36,6 +36,7 @@ jobs:
pip install -r requirements.txt
- name: Validate Python files
run: |
shopt -s globstar
for file in scripts/**/*.py; do
if [ -f "$file" ]; then
echo "Validating $file"