aboutsummaryrefslogtreecommitdiff
path: root/rpb-openembedded
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2016-10-28 11:10:23 +0300
committerFathi Boudra <fathi.boudra@linaro.org>2016-10-28 08:14:04 +0000
commit11f11a6f7fb6de05545d11c46a224eb016a99b2d (patch)
tree3cf4deba5e9adfa6d62f7395fcec10db9ffe408c /rpb-openembedded
parentd5b021cbcdbdf2b4021b0dfe7a05985ca8b3bb0b (diff)
rpb-openembedded: use ":" for input field separator
the matrix project plugin considers ',' as an unsafe character and reject it as invalid. Change-Id: If05373cb8a45aa79cf3c8cdb7115082e65d41b20 Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Diffstat (limited to 'rpb-openembedded')
-rwxr-xr-xrpb-openembedded/builders.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpb-openembedded/builders.sh b/rpb-openembedded/builders.sh
index c9c67296f7..6e2a4bdc88 100755
--- a/rpb-openembedded/builders.sh
+++ b/rpb-openembedded/builders.sh
@@ -69,8 +69,8 @@ EOF
# add useful debug info
cat conf/{site,auto}.conf
-# Split machine,machine2 and pass it to secondary image.
-IFS=',' read -ra SPLITMACHINES <<< "${MACHINE}"
+# Split machine:machine2 and pass it to secondary image.
+IFS=':' read -ra SPLITMACHINES <<< "${MACHINE}"
if [ -n ${SPLIMACHINES[1]} ] ; then
MACHINE="${SPLITMACHINES[0]}"