73d6705bc2
Fixes #16
6 lines
177 B
Bash
Executable File
6 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tree-sitter parse $(find examples/bash-it -name '*.bash' -or -name '*.sh') -q -t \
|
|
| egrep 'ERROR|MISSING' \
|
|
| tee >(cut -d' ' -f1 > script/known-failures.txt)
|