From: Stijn Tintel Date: Sat, 20 Jun 2026 07:06:21 +0000 (+0300) Subject: cgi-io: add generic version check override X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=cb743e0f954ec2cb447f8c5a70e1b77c6b39334e;p=openwrt-packages.git cgi-io: add generic version check override The binary included in this package does not output anything, causing the generic version check in CI to fail. Override the test. Signed-off-by: Stijn Tintel --- diff --git a/net/cgi-io/test-version.sh b/net/cgi-io/test-version.sh new file mode 100755 index 000000000..923aadc2e --- /dev/null +++ b/net/cgi-io/test-version.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# +# SPDX-License-Identifier: GPL-2.0-only + +# shellcheck shell=busybox + +case "$PKG_NAME" in +cgi-io) + exit 0 + ;; + +*) + echo "Untested package: $PKG_NAME" >&2 + exit 1 + ;; +esac