2018-03-01 21:30:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
tree-sitter parse $(find examples/bash-it -name '*.bash' -or -name '*.sh') -q -t \
|
2018-03-29 16:54:05 +00:00
|
|
|
| egrep 'ERROR|MISSING' \
|
2018-03-01 22:04:29 +00:00
|
|
|
| tee >(cut -d' ' -f1 > script/known-failures.txt)
|