Files
packages/libs/libucontext/test-version.sh
T
George Sapkin f596c12885 libucontext: add version check override
Skip version checks as none of the executables seem to report their
versions.

Signed-off-by: George Sapkin <george@sapk.in>
2026-05-17 14:35:31 +03:00

16 lines
165 B
Bash
Executable File

#!/bin/sh
# shellckeck shell=busybox
case "$PKG_NAME" in
libucontext|\
libucontext-tests)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac