summaryrefslogtreecommitdiffstats
path: root/net/mikrotik-btest/test-version.sh
blob: 16d190f0e8cd8b8a3a38877b12390fc35612a91f (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
mikrotik-btest)
	# Do not provide version information
	exit 0
	;;

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