From 9b4f908513e6d9fa890057a93c7e2d27e07d0d5c Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 27 Apr 2024 17:40:52 +0200 Subject: [PATCH] += --- cd.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cd.sh b/cd.sh index 1968ca2..5717dbd 100644 --- a/cd.sh +++ b/cd.sh @@ -75,7 +75,7 @@ function cd_set_environment { [ "${CI_SERVER_URL}" ] && CD_PROJECTS_URL="${CI_SERVER_URL}" [ "${GITHUB_SERVER_URL}" ] && CD_PROJECTS_URL="${GITHUB_SERVER_URL}" if [ "${CD_PROJECTS_URL}" ] ; then - CD_PROJECTS_URL+="/${CD_PROJECTS_GROUP}" + CD_PROJECTS_URL="${CD_PROJECTS_URL}/${CD_PROJECTS_GROUP}" else echo 'CD_PROJECTS_URL' exit 3 @@ -124,7 +124,7 @@ local server local text='' cd_step "${FUNCNAME}" for server in "${@}" ; do - text+="nameserver ${server} + text="${text}nameserver ${server} " done cd_write "${CD_DNS_FILE}" "${text}"