mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 01:30:42 +01:00
10 lines
308 B
Bash
Executable File
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
|