tree-sitter-bash/script/update-known-failures.sh

8 lines
185 B
Bash
Raw Normal View History

2018-03-01 21:30:24 +00:00
#!/bin/bash
2019-12-10 20:39:14 +00:00
tree-sitter parse -q -t \
examples/**/*.sh \
examples/**/*.bash \
| egrep 'ERROR|MISSING' \
2019-12-10 20:39:14 +00:00
| tee >(cut -d' ' -f1 | sort > script/known-failures.txt)