aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-12-13 20:59:46 +0100
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-12-13 20:59:46 +0100
commit4d4149faa5604836931c039ad1922f95a764bb76 (patch)
treef6663b1a5bc7cbfd6c862cc9f3465700134946ac /ci
parent2bd5228ac21724a92f9cd1d162b304f3ea6285ce (diff)
deploy.sh: Fix missing space in dependencies list
Change-Id: I4d41ff8b9f7c1b59a2c1a400b9335f17b8c542be Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci')
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index d995687a2..adf96c332 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}