mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
12b01bad56
captest, filecap, netcap and pscap (libcap-ng-bin) do not print the package version string (0.8.4), causing generic version check failures in CI. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
6 lines
114 B
Bash
Executable File
6 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
case "$1" in
|
|
captest|filecap|netcap|pscap) exit 0 ;;
|
|
*) echo "Untested package: $1" >&2; exit 1 ;;
|
|
esac
|