Skip to content

Commit

Permalink
fix lint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
spring1843 committed Jul 13, 2023
1 parent c3a6e3b commit 1f13574
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/count-rehearsals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source "${SCRIPT_DIR}/sections.sh"

ALL_TESTS=0
for section in "${sections[@]}"; do
SECTION_TESTS=$(ls -l $section/*_test.go | wc -l)
SECTION_TESTS=$(find $section -name "*_test.go" | wc -l)
ALL_TESTS=$((ALL_TESTS + SECTION_TESTS))
done
echo $ALL_TESTS
Empty file modified .github/scripts/sections.sh
100644 → 100755
Empty file.

0 comments on commit 1f13574

Please sign in to comment.