From 92af9ebeacb1bd898c8527205f5ca902b85a7763 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Wed, 13 Dec 2017 20:59:46 +0100 Subject: deploy.sh: Fix missing space in dependencies list Change-Id: I4d41ff8b9f7c1b59a2c1a400b9335f17b8c542be Signed-off-by: Alexandru Avadanii (cherry picked from commit 4d4149faa5604836931c039ad1922f95a764bb76) --- ci/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/deploy.sh b/ci/deploy.sh index 4b99b37a7..90f789a2d 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -291,7 +291,7 @@ else eval "$(parse_yaml "./requirements_${pkg_type}.yaml")" for section in 'common' "${DEPLOY_TYPE}" "$(uname -m)"; do section_var="requirements_pkg_${section}[*]" - pkg_list+=${!section_var} + pkg_list+=" ${!section_var}" done # shellcheck disable=SC2086 ${pkg_cmd} ${pkg_list} -- cgit 1.2.3-korg