Skip to content

Commit

Permalink
script: List unverified
Browse files Browse the repository at this point in the history
The presence of unverified exercises doesn't affect the CI; it is for
information only.
  • Loading branch information
petertseng committed Nov 28, 2021
1 parent 519d482 commit 238361f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bin/list-unverified.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
dir=$(dirname "$0")

for i in $dir/../exercises/*/; do
exercise=$(basename "$i")
if [ -f $i/canonical-data.json ] && [ ! -f $i/verify.rb ]; then
echo "$exercise"
fi
done

0 comments on commit 238361f

Please sign in to comment.