1
0
mirror of https://gitlab.alpinelinux.org/alpine/cloud/tiny-cloud.git synced 2025-12-15 11:22:43 +03:00

Fix source of cloud-specific mdev functions

We need to source it with '.'

fixes commit c335944911d6 (Add kyua testsuite and make code more portable)
This commit is contained in:
Natanael Copa 2023-03-09 13:01:36 +01:00
parent c055e974f0
commit e9b4350617

View File

@ -35,5 +35,5 @@ mod__vnic_eth_hotplug() {
# load cloud-specific functions
: "${LIBDIR:=$PREFIX/lib}"
if [ -f "$LIBDIR"/tiny-cloud/"$CLOUD"/mdev ]; then
"$LIBDIR"/tiny-cloud/"$CLOUD"/mdev
. "$LIBDIR"/tiny-cloud/"$CLOUD"/mdev
fi