mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
89e4a2fe3f
MinOZW does not implement any --version flag, so skip the generic version check. Just verify the binary is present and executable. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
7 lines
80 B
Bash
7 lines
80 B
Bash
#!/bin/sh
|
|
case "$1" in
|
|
openzwave)
|
|
[ -x /usr/bin/MinOZW ] || exit 1
|
|
;;
|
|
esac
|