1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/cppcheck.sh
nowrep b6f84d648f Fixing previous commit
Sorry for the mistake, it should be fine now.
2011-11-06 17:09:08 +01:00

17 lines
169 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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