mirror of
https://github.com/openwrt/packages.git
synced 2025-07-10 02:59:01 +00:00
Simply test that both variants produce a binary for now Signed-off-by: Bjørn Mork <bjorn@mork.no>
11 lines
126 B
Bash
Executable File
11 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"conserver")
|
|
conserver -V | grep "$2"
|
|
;;
|
|
"conserver-ipmi")
|
|
conserver -V | grep "$2"
|
|
;;
|
|
esac
|