mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 17:58:52 +00:00
d82a78fa3d
* Removed .py suffix from command line tools * sigmac tells when it does nothing and prints usage notice * Makefile upload target * minor changes
11 lines
188 B
Bash
Executable File
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
|