Skip to content

Commit

Permalink
Makefile.lint: fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sighook committed Aug 3, 2023
1 parent a03cb18 commit c5269c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.lint
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ deadlinks:

podchecker:
@echo "=======> Check PODs for syntax errors"
@podchecker *.pod >/dev/null
@podchecker pod/*.pod >/dev/null

shellcheck:
@echo "=======> Check shell scripts for syntax errors"
Expand All @@ -23,11 +23,11 @@ shellcheck:
cppcheck:
@echo "=======> Static C/C++ code analysis"
@cppcheck --quiet --enable=all --check-level=exhaustive \
--suppress=missingIncludeSystem .
--suppress=missingIncludeSystem src

flawfinder:
@echo "=======> Check for potential security flaws"
@flawfinder --quiet -D .
@flawfinder --quiet -D src

longlines:
@echo "=======> Check for long lines"
Expand Down

0 comments on commit c5269c8

Please sign in to comment.