Files
packages/libs/libcap-ng/test-version.sh
T
Alexandru Ardelean 12b01bad56 libcap-ng-bin: add test-version.sh to skip version check
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>
2026-05-16 17:49:10 +03:00

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