diff --git a/pimbd/test-version.sh b/pimbd/test-version.sh new file mode 100644 index 0000000..b2ea8a2 --- /dev/null +++ b/pimbd/test-version.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# shellcheck shell=busybox + +case "$PKG_NAME" in +pimbd) + # The package version is derived from the source date and git + # hash, which the binary does not report + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac