File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,11 @@ jobs:
110110 echo "Total Python scripts: $total"
111111 echo ""
112112 echo "By domain:"
113- for domain in engineering-team engineering marketing-skill product-team project-management ra-qm-team c-level-advisor business-growth finance data-analytics hr-operations sales-success scripts; do
113+ domains="engineering-team engineering marketing-skill product-team"
114+ domains="$domains project-management ra-qm-team c-level-advisor"
115+ domains="$domains business-growth finance data-analytics"
116+ domains="$domains hr-operations sales-success scripts"
117+ for domain in $domains; do
114118 if [ -d "$domain" ]; then
115119 count=$(find "$domain" -name "*.py" -not -path "*/__pycache__/*" | wc -l)
116120 if [ "$count" -gt 0 ]; then
You can’t perform that action at this time.
0 commit comments