1
0
Fork 0
mirror of https://codeberg.org/h3xx/you-dont-need-pihole.git synced 2026-06-14 17:55:39 +00:00
you-dont-need-pihole/util/run-dev-tests.sh
2025-02-26 15:41:29 -06:00

10 lines
156 B
Bash
Executable file

#!/bin/bash
WORKDIR=${0%/*}
BASEDIR="$WORKDIR/.."
cd "$BASEDIR" || exit
if ! prove 'dev-t'; then
printf 'Developer tests failed!\n' >&2
exit 1
fi