mirror of
https://github.com/openwrt/routing.git
synced 2026-08-28 03:36:22 +04:00
The package version is derived from PKG_SOURCE_DATE and the git hash, which the binary does not report, so the generic version check of the CI runtime tests always fails for this package. Skip the version check. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
17 lines
244 B
Bash
17 lines
244 B
Bash
#!/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
|