diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-02-15 06:25:43 -0800 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-02-15 06:25:43 -0800 |
commit | 36e9d0092bb36f415b377a5d7a7969c60fbd66b9 (patch) | |
tree | 5f84cab32c7ae43c04f45d68f823f3f4f5f132fd /jjb | |
parent | a72bf79b5c3b05a2781fcde61893a9591d21b664 (diff) |
Fix docker repo variable
Multi-line variables need to have the contents quoted
Change-Id: Ia931ec75e7ddd45e1ae94b36916655530459e9fc
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/include-docker-login.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/include-docker-login.sh b/jjb/include-docker-login.sh index f583f73f2..89b25163a 100644 --- a/jjb/include-docker-login.sh +++ b/jjb/include-docker-login.sh @@ -1,8 +1,8 @@ #!/bin/bash -DOCKER_REPOSITORIES=nexus3.openecomp.org:10001 \ +DOCKER_REPOSITORIES="nexus3.openecomp.org:10001 \ nexus3.openecomp.org:10002 \ - nexus3.openecomp.org:10003 + nexus3.openecomp.org:10003" for DOCKER_REPOSITORY in $DOCKER_REPOSITORIES; do |