1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/cppcheck.sh
2013-01-21 22:38:31 +01:00

26 lines
238 B
Bash
Executable File

#!/bin/bash
#
# cppcheck
#
function check_code {
cppcheck \
--enable=all \
--force \
--verbose \
. > /dev/null
}
echo "cppcheck..."
cd ../src/plugins
check_code
cd ../lib/
check_code
cd ../main
check_code
exit 0