fwknop/extras/coverity/coverity_scan.sh
2017-02-20 21:51:35 -05:00

16 lines
354 B
Bash
Executable File

#!/bin/sh +x
#
# Download the latest Coverity scan build here:
# https://scan.coverity.com/download
#
make clean
./extras/apparmor/configure_args.sh
export PATH=$PATH:/home/mbr/coverity/latest/bin
cov-build --dir cov-int make
tar cvfz fwknop.tgz cov-int
echo "[+] Submit build tarball (./fwknop.tgz) here: http://scan.coverity.com/upload.html"
exit