mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
2e592c483d
Fixes: 12b01bad ("libcap-ng-bin: add test-version.sh to skip version check")
Signed-off-by: George Sapkin <george@sapk.in>
15 lines
144 B
Bash
Executable File
15 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shellckeck shell=busybox
|
|
|
|
case "$1" in
|
|
libcap-ng|\
|
|
libcap-ng-bin)
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Untested package: $1" >&2
|
|
exit 1
|
|
;;
|
|
esac
|