aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-12-13 20:59:46 +0100
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-01-04 00:08:43 +0100
commit92af9ebeacb1bd898c8527205f5ca902b85a7763 (patch)
tree1b815cd4c854ab5ac985d9443e9e55ca1da82328
parent2c16287422b51f58e581a4ad28265993c1efe6a8 (diff)
deploy.sh: Fix missing space in dependencies list
Change-Id: I4d41ff8b9f7c1b59a2c1a400b9335f17b8c542be Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com> (cherry picked from commit 4d4149faa5604836931c039ad1922f95a764bb76)
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
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}