Drop cert.py from cppcheck invocation.

This commit is contained in:
Michael R Sweet 2024-12-10 08:24:47 -05:00
parent 45ac66874c
commit 7a45adb7f5
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244

View File

@ -258,5 +258,5 @@ clang:
# Analyze code using Cppcheck <http://cppcheck.sourceforge.net>
cppcheck:
cppcheck $(CPPFLAGS) --template=gcc --addon=cert.py --suppressions-list=.cppcheck $(OBJS:.o=.c) 2>cppcheck.log
cppcheck $(CPPFLAGS) --template=gcc --suppressions-list=.cppcheck $(OBJS:.o=.c) 2>cppcheck.log
test -s cppcheck.log && (echo "$(GHA_ERROR)Cppcheck detected issues."; echo ""; cat cppcheck.log; exit 1) || exit 0