Skip to content

Commit

Permalink
Drop cppcheck cert.py addon.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Oct 15, 2024
1 parent cfa8056 commit a08e00e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pappl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ clang:
# Analyze code using Cppcheck <http://cppcheck.sourceforge.net>
cppcheck:
echo Analyzing code with Cppcheck...
echo 'cppcheck $(CPPFLAGS) --template=gcc --addon=cert.py --suppressions-list=cppcheck.suppressions ...'
cppcheck $(CPPFLAGS) --template=gcc --addon=cert.py --suppressions-list=cppcheck.suppressions `echo $(OBJS:.o=.c) | sed -e '1,$$s/-macos\.c/-macos.m/g'` 2>cppcheck.log
echo 'cppcheck $(CPPFLAGS) --template=gcc --suppressions-list=cppcheck.suppressions ...'
cppcheck $(CPPFLAGS) --template=gcc --suppressions-list=cppcheck.suppressions `echo $(OBJS:.o=.c) | sed -e '1,$$s/-macos\.c/-macos.m/g'` 2>cppcheck.log
test -s cppcheck.log && (echo "$(GHA_ERROR)Cppcheck detected issues."; echo ""; cat cppcheck.log; exit 1) || exit 0


Expand Down

0 comments on commit a08e00e

Please sign in to comment.