mirror of
https://codeberg.org/h3xx/you-dont-need-pihole.git
synced 2026-06-14 17:55:39 +00:00
10 lines
156 B
Bash
Executable file
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
|