diff options
Diffstat (limited to 'coverage.sh')
| -rwxr-xr-x | coverage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage.sh b/coverage.sh index c66d2af..6849997 100755 --- a/coverage.sh +++ b/coverage.sh @@ -1,6 +1,6 @@ #!/bin/env sh -fns=$(grep "^(fn" core.fnl macros/core.fnl | cut -f2 --delimiter=" " | grep -v "^-") +fns=$(grep "^(fn[&*] core." core.fnl macros/core.fnl | cut -f2 --delimiter=" " | cut -f2 --delimiter=".") tsts=$( for fn in $fns; do fn=$(echo "$fn" | sed "s/\?/\\\?/") |