Files
blue-team-tools/tests/test-merge.sh
T

11 lines
188 B
Bash
Raw Normal View History

2017-11-14 22:17:18 +01:00
#!/bin/bash
for f in $(find rules/ -type f -name '*.yml')
do
echo -n .
2017-12-08 23:50:08 +01:00
if ! coverage run -a --include=tools/* tools/merge_sigma $f > /dev/null
2017-11-14 22:17:18 +01:00
then
exit 1
fi
done