#!/bin/sh

if [ -z "$1" ]
then
    echo "usage: codechecker <build command>"
    exit 2
fi

_tmp=$(mktemp -d)
codechecker check --jobs 6 -b "$@" -o $_tmp --clean --enable sensitive
codechecker parse --export html --output ${_tmp}_web $_tmp
