fix: source functions

sourcing /lib/functions so uci_get is in scope
This commit is contained in:
eneller
2025-11-22 22:36:49 +01:00
parent 930e3ad1ba
commit 12bfaa2dfe
4 changed files with 18 additions and 7 deletions

9
test/functions.sh Normal file
View File

@@ -0,0 +1,9 @@
# create a symlink to this file at /lib/functions.sh for testing
# mock implementation of uci_get that always returns the default value
uci_get() {
for item in "$@"; do
last=$item
done
echo "$last"
}