summaryrefslogtreecommitdiffstats
path: root/babel-pinger/test-version.sh
blob: 4a5b9aeb87899de07b774b36cccd4b5e66d99b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# shellcheck shell=busybox

case "$PKG_NAME" in
babel-pinger)
	# babel-pinger does not provide any option to report its version
	exit 0
	;;

*)
	echo "Untested package: $PKG_NAME" >&2
	exit 1
	;;
esac