mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
mikrotik-btest: add version check override
Skip version checks as none of the executables seem to report their versions. Signed-off-by: Wei-Ting Yang <williamatcg@gmail.com>
This commit is contained in:
committed by
George Sapkin
parent
757ba7fa41
commit
0de3e89ff8
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
# shellcheck shell=busybox
|
||||
|
||||
case "$PKG_NAME" in
|
||||
mikrotik-btest)
|
||||
# Do not provide version information
|
||||
exit 0
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Untested package: $PKG_NAME" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
Reference in New Issue
Block a user