16 lines
354 B
Bash
Executable File
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
|