blob: d9b50bc8ed1e5554304e35ff02828216a1b0904c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# shellcheck shell=busybox
case "$PKG_NAME" in
ohybridproxy|zonestitcher)
# The package version is derived from the source date and git
# hash, which the binaries do not report
exit 0
;;
*)
echo "Untested package: $PKG_NAME" >&2
exit 1
;;
esac
|