mirror of
https://github.com/openwrt/packages.git
synced 2026-05-30 03:36:24 +08:00
The binary does not report the OpenWrt package version (2023.06.11~ab78c48f); override the generic version check with test-version.sh. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
6 lines
95 B
Bash
Executable File
6 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
case "$1" in
|
|
fatresize) exit 0 ;;
|
|
*) echo "Untested package: $1" >&2; exit 1 ;;
|
|
esac
|