From: Ralph Ronnquist Date: Tue, 17 Sep 2024 05:11:13 +0000 (+1000) Subject: Handle blank dependency line. X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=eb02e98e65a7cdec5f444aa1e6fb93eb6ba043f5;p=rrq%2Fbespoke-installer.git Handle blank dependency line. --- 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 }