mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
17 lines
169 B
Bash
17 lines
169 B
Bash
|
#!/bin/bash
|
|||
|
#
|
|||
|
# cppcheck
|
|||
|
#
|
|||
|
|
|||
|
echo "cppcheck..."
|
|||
|
|
|||
|
cd ../src
|
|||
|
cppcheck \
|
|||
|
--enable=all \
|
|||
|
--force \
|
|||
|
--verbose \
|
|||
|
. > /dev/null
|
|||
|
|
|||
|
read -p "Press [ENTER] to close terminal"
|
|||
|
exit
|