rsyslog/CI/check_line_length.sh
2017-01-17 08:54:37 +01:00

10 lines
308 B
Bash
Executable File

#!/bin/bash
mkdir _tmp_stylecheck
cd _tmp_stylecheck
git clone https://github.com/rsyslog/codestyle
cd codestyle
gcc --std=c99 stylecheck.c -o stylecheck
cd ../..
find -name "*.[ch]" | xargs _tmp_stylecheck/codestyle/stylecheck -w -f -l 120 && \
_tmp_stylecheck/codestyle/stylecheck plugins/imfile/imfile.c