Fix docker repo variable
authorAndrew Grimberg <agrimberg@linuxfoundation.org>
Wed, 15 Feb 2017 14:25:43 +0000 (06:25 -0800)
committerAndrew Grimberg <agrimberg@linuxfoundation.org>
Wed, 15 Feb 2017 14:25:43 +0000 (06:25 -0800)
Multi-line variables need to have the contents quoted

Change-Id: Ia931ec75e7ddd45e1ae94b36916655530459e9fc
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
jjb/include-docker-login.sh

index f583f73..89b2516 100644 (file)
@@ -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