blob: d34b27b2f1cf37b73b1f01b9451ecec19b5de6ce (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# shunt has no version output by design: the runtime version comes from
# rpc-sys packagelist via ubus, which is not available in the CI
# container. The forced generic version check can therefore never match
# PKG_VERSION in the output of the daemon.
[ "$1" = "shunt" ] || exit 1
exit 0
|