mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
0f34c18d65
aserver does not implement --version so the generic CI version check fails for it. Add a test.sh case that verifies it is present and executable instead. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
9 lines
148 B
Bash
9 lines
148 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
aserver)
|
|
# aserver does not implement --version; just verify it is present
|
|
[ -x /usr/bin/aserver ] || exit 1
|
|
;;
|
|
esac
|