aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2020-05-07 16:40:35 -0400
committerAllen Winter <allen.winter@kdab.com>2020-05-07 16:40:35 -0400
commit85527221ebbe312d6ba644e40af8a8cf3b6b67e9 (patch)
tree0f1e79220276817b74b09537111e82bcf2eff0c1
parent6eab2735dc7c0a0d24554343d7b9c33a19df2a5f (diff)
clazy.cmake - don't print level3 checker listupstream/1.6
level3 has been removed in v1.6 Differential Revision: https://phabricator.kde.org/D29348
-rw-r--r--clazy.cmake11
1 files changed, 8 insertions, 3 deletions
diff --git a/clazy.cmake b/clazy.cmake
index 16cd5f7a..ae0783ba 100644
--- a/clazy.cmake
+++ b/clazy.cmake
@@ -38,8 +38,13 @@ VERSION() {
PRLIST() {
echo ""
- echo "Checks from level$1. $2:"
- ls -1 $sharedir/doc/clazy/level$1/README* | awk -F/ '{printf(" %s\n", $NF)}' | sed s/README-// | sed s/\.md$// | sort
+ if ( test -d "$sharedir/doc/clazy/level$1" )
+ then
+ echo "Checks from level$1. $2:"
+ ls -1 $sharedir/doc/clazy/level$1/README* | awk -F/ '{printf(" %s\n", $NF)}' | sed s/README-// | sed s/\.md$// | sort
+ else
+ echo "There are no checkers available for level$1"
+ fi
}
PRINFO() {
@@ -79,7 +84,7 @@ then
PRLIST 0 "Very stable checks, 100% safe, no false-positives"
PRLIST 1 "Mostly stable and safe, rare false-positives"
PRLIST 2 "Sometimes has false-positives (20-30%)"
- PRLIST 3 "Not always correct, high rate of false-positives"
+ #PRLIST 3 "Not always correct, high rate of false-positives"
exit
fi