mirror of https://gerrit.osmocom.org/osmo-ci
repo-install-test: fix osmo-trx-usrp1 check
The DISTRO variable is either debian10 or debian11, fix the broken check. This condition is there in the first place, because we don't build the usrp1 backend for centos8. Change-Id: I987f27db257961faf06824df2dcc8f9db1fedccf Related: OS#5365changes/09/30509/2
parent
f5bd274018
commit
36215cfff2
|
@ -393,10 +393,12 @@ test_binaries() {
|
|||
osmo-stp \
|
||||
osmo-trx-uhd
|
||||
|
||||
if [ "$DISTRO" = "debian" ]; then
|
||||
case "$DISTRO" in
|
||||
debian*)
|
||||
test_binaries_version \
|
||||
osmo-trx-usrp1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
services_check() {
|
||||
|
|
Loading…
Reference in New Issue