Files
George Sapkin 6a20260a1f treewide: fix typos in version check overrides
Fix shellcheck shell configuration in version check overrides.

Signed-off-by: George Sapkin <george@sapk.in>
2026-05-25 08:02:47 +03:00

15 lines
144 B
Bash
Executable File

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