From 2bf11fe423f0181a798da9d99c96f6974fe8b5dd Mon Sep 17 00:00:00 2001 From: Olivier Grand Date: Tue, 8 Oct 2024 11:34:41 +0200 Subject: [PATCH] replace coa repository with gitops in init-git script --- tools/scripts/init-git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/init-git.sh b/tools/scripts/init-git.sh index 6a27137..b660167 100755 --- a/tools/scripts/init-git.sh +++ b/tools/scripts/init-git.sh @@ -106,7 +106,7 @@ if [ -d ${HOME}/bosh/gitops ] ; then printf "\n%bGit ops repository already exists (delete it before if you want to reinitialize repository).%b\n" "${REVERSE}${YELLOW}" "${STD}" else printf "\n%bClone gitops repository%b\n" "${REVERSE}${YELLOW}" "${STD}" - GITOPS_URL="$(echo "${SECRETS_URL}" | sed -e "s+paas-templates-secrets+cf-ops-automation+g")" + GITOPS_URL="$(echo "${SECRETS_URL}" | sed -e "s+paas-templates-secrets+gitops-fluxcd-repo+g")" git clone ${GITOPS_URL} gitops 2>&1 if [ ! -d gitops ] ; then printf "\nERROR: Git clone gitops repository failed.\n" ; exit 1