From eb02e98e65a7cdec5f444aa1e6fb93eb6ba043f5 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Tue, 17 Sep 2024 15:11:13 +1000 Subject: [PATCH] Handle blank dependency line. --- build-installer-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-installer-functions.sh b/build-installer-functions.sh index a1640e9..e94270e 100644 --- a/build-installer-functions.sh +++ b/build-installer-functions.sh @@ -69,7 +69,7 @@ missing_depends() { local D REC=T ALLDEP= show_depends $1 | \ while read D ; do - check_depends ${PROVIDER["$D"]} + [ -z "$D" ] || check_depends ${PROVIDER["$D"]} done } -- 2.39.2