We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d218a0b commit 9475197Copy full SHA for 9475197
.github/workflows/bench-test.yaml
@@ -62,7 +62,7 @@ jobs:
62
63
find . -type f -name '*.rs' | while read -r file; do
64
echo "Checking $file"
65
- for_loop_count_in_file=$(grep -oE 'for\s+(\([^)]+\)|\w+)\s+in\s+[^{]+' "$file" | wc -l)
+ $for_loop_count_in_file=$(grep -oE 'for\s+(\([^)]+\)|\w+)\s+in\s+[^{]+' "$file" | wc -l)
66
echo "Count in file: $for_loop_count_in_file"
67
((for_loop_count += $for_loop_count_in_file))
68
done
0 commit comments