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

19 lines
213 B
Bash
Executable File

#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in
ftdi_eeprom)
ftdi_eeprom --version 2>&1 | grep -F "$PKG_VERSION"
;;
libftdi1)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac