blob: a71961a7dbe026a5b5f1fae0587b0dc3f6769944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# shellcheck shell=busybox
# The jp command-line tool takes a required expression argument and has no
# version flag, so the generic version check cannot detect the version from it.
# The version is covered by the import check in test.sh instead.
case "$PKG_NAME" in
python3-jmespath | python3-jmespath-src)
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac
|