5 lines
131 B
Bash
Executable File
5 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$(./cppcheck --showtime=top5 cli/cmdlineparser.h --language=c++ --quiet | wc -l)" != 7 ]] ; then
|
|
false
|
|
fi
|