mirror of
https://github.com/vasi/pixz
synced 2024-10-30 15:21:41 +00:00
35a2f67be9
- fixes #8
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if which cppcheck &> /dev/null ; then
|
|
cppcheck --error-exitcode=1 $srcdir/../src
|
|
else
|
|
echo "no cppcheck, skipping test"
|
|
exit 77
|
|
fi
|