mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
1130219346
Skip version checks as none of the executables seem to report their versions. Signed-off-by: George Sapkin <george@sapk.in>
16 lines
173 B
Bash
Executable File
16 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shellckeck shell=busybox
|
|
|
|
case "$PKG_NAME" in
|
|
python3-tabulate|\
|
|
python3-tabulate-src)
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "Untested package: $PKG_NAME" >&2
|
|
exit 1
|
|
;;
|
|
esac
|