aboutsummaryrefslogtreecommitdiff
#!/usr/bin/env bash
set -euo pipefail

echo
for path in $(find -type f -name '*.lisp'); do
    printf "%s\n    " "${path#./}"
    laminarc run acl2-verify path="$(pwd)/$path"
    echo
done

echo 'Verified all files!'