2023-03-04 13:41:10 +00:00
|
|
|
#!/bin/bash
|
2023-03-04 13:27:58 +00:00
|
|
|
|
|
|
|
grep \
|
|
|
|
--include=\*.{c,cpp,h} \
|
2023-03-04 13:41:10 +00:00
|
|
|
--exclude={pstdint,m3d}.h \
|
2023-03-04 13:27:58 +00:00
|
|
|
-rnw include code \
|
|
|
|
-e '^\s*printf'
|
|
|
|
|
2023-03-04 14:00:43 +00:00
|
|
|
if [ $? -eq 0 ]; then
|
2023-03-04 13:52:49 +00:00
|
|
|
echo "Debug statement(s) detected. Please uncomment (using single-line comment), remove, or manually add to exclude filter, if appropriate"
|
2023-03-04 13:27:58 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|