summaryrefslogtreecommitdiffstats
path: root/lang/python/python-tabulate/test-version.sh
blob: 4200dbc800ea213e80b52ef5f5d2594d7525607c (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
python3-tabulate|\
python3-tabulate-src)
	exit 0
	;;

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