SigmaHQ/tests/test-merge.sh
Thomas Patzke d82a78fa3d Finalizing PyPI release
* Removed .py suffix from command line tools
* sigmac tells when it does nothing and prints usage notice
* Makefile upload target
* minor changes
2017-12-08 23:50:08 +01:00

11 lines
188 B
Bash
Executable File

#!/bin/bash
for f in $(find rules/ -type f -name '*.yml')
do
echo -n .
if ! coverage run -a --include=tools/* tools/merge_sigma $f > /dev/null
then
exit 1
fi
done