From a3eb0cb214129fcc69c12651865240d5b93e8e19 Mon Sep 17 00:00:00 2001 From: Lukas Date: Thu, 2 May 2024 06:31:57 +0000 Subject: [PATCH] fix: misplaced quote char in init.yaml (#451) Reviewed-on: https://codeberg.org/forgejo-contrib/forgejo-helm/pulls/451 Reviewed-by: Michael Kriese Co-authored-by: Lukas Co-committed-by: Lukas --- templates/gitea/init.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gitea/init.yaml b/templates/gitea/init.yaml index 7f31f6a..6c89dc7 100644 --- a/templates/gitea/init.yaml +++ b/templates/gitea/init.yaml @@ -114,7 +114,7 @@ stringData: echo '...created.' else echo "Admin account '${GITEA_ADMIN_USERNAME}' already exist. Running update to sync password..." - gitea admin user change-password --username "${GITEA_ADMIN_USERNAME}" --password "${GITEA_ADMIN_PASSWORD} --must-change-password=false" + gitea admin user change-password --username "${GITEA_ADMIN_USERNAME}" --password "${GITEA_ADMIN_PASSWORD}" --must-change-password=false echo '...password sync done.' fi }