1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 10:12:10 +02:00
falkonOfficial/scripts/cppcheck.sh

17 lines
169 B
Bash
Raw Normal View History

#!/bin/bash
#
# cppcheck
#
echo "cppcheck..."
cd ../src
cppcheck \
--enable=all \
--force \
--verbose \
. > /dev/null
read -p "Press [ENTER] to close terminal"
exit