Files
packages/utils/fatresize/test-version.sh
T
Alexandru Ardelean 64628636ed 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>
2026-05-16 17:49:10 +03:00

6 lines
95 B
Bash
Executable File

#!/bin/sh
case "$1" in
fatresize) exit 0 ;;
*) echo "Untested package: $1" >&2; exit 1 ;;
esac