fatresize: add test-version.sh to skip git-snapshot version check

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>
This commit is contained in:
Alexandru Ardelean
2026-05-13 08:42:00 +03:00
committed by Alexandru Ardelean
parent dcb56c78e7
commit 64628636ed
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
case "$1" in
fatresize) exit 0 ;;
*) echo "Untested package: $1" >&2; exit 1 ;;
esac