From c6a80b741b2f04bdf872f0e9392fcc3f71cabe80 Mon Sep 17 00:00:00 2001 From: leafee98 Date: Fri, 18 Aug 2023 15:57:26 +0800 Subject: [PATCH] Fix missing quotes when retrieving PACKAGE_DIR --- script/build_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build_all.sh b/script/build_all.sh index 3be16a5..7eecde9 100755 --- a/script/build_all.sh +++ b/script/build_all.sh @@ -99,7 +99,7 @@ else MAKEDEB_PATH="$(realpath "$MAKEDEB_PATH")" fi -if [[ -n ${PACKAGE_DIR-} && "${#PACKAGE_DIR}" -gt 0 ]] ; then +if [[ -n "${PACKAGE_DIR-}" && "${#PACKAGE_DIR}" -gt 0 ]] ; then for p in "${PACKAGE_DIR[@]}" ; do for f in "$p"/* ; do _PACKGES_TO_BUILD+=("$f")