#!/bin/sh

for conffile in ./run-check.conf .git/run-check.conf
do
	if [ -f "$conffile" ]
	then
		. "$conffile"
		export DBA_DB
		break
	fi
done

exec make check "$@"
