Fix missing quotes when retrieving PACKAGE_DIR
This commit is contained in:
parent
1310c2f6f1
commit
c6a80b741b
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue