Code Review
/
fuel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
2bd5228
)
deploy.sh: Fix missing space in dependencies list
51/48851/1
author
Alexandru Avadanii
<Alexandru.Avadanii@enea.com>
Wed, 13 Dec 2017 19:59:46 +0000
(20:59 +0100)
committer
Alexandru Avadanii
<Alexandru.Avadanii@enea.com>
Wed, 13 Dec 2017 19:59:46 +0000
(20:59 +0100)
Change-Id: I4d41ff8b9f7c1b59a2c1a400b9335f17b8c542be
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
ci/deploy.sh
patch
|
blob
|
history
diff --git
a/ci/deploy.sh
b/ci/deploy.sh
index
d995687
..
adf96c3
100755
(executable)
--- 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}