From 074ba3a4810d99f278e126c6037577d40fa24ffe Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Mon, 11 Sep 2023 18:07:57 +0000 Subject: [PATCH] defaults.env: quote GIT_USER_NAME to avoid error when sourcing .env Since this commit: df646b6046a7d64e1d9f5460bce082963fc10e67 Issue #396: Use arm64v8 images for services .env is sourced and it fails "Doe: command not found" Without the quotes, it would also fail with a valid name filled. --- env/defaults.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/env/defaults.env b/env/defaults.env index 960744a..19fc34b 100644 --- a/env/defaults.env +++ b/env/defaults.env @@ -4,7 +4,7 @@ EDITOR=vim GIT_BZ_PASSWORD=nothing GIT_BZ_USER=you@example.com GIT_USER_EMAIL=you@example.com -GIT_USER_NAME=John Doe +GIT_USER_NAME="John Doe" DEBUG_GIT_REPO_MISC4DEV=no DEBUG_GIT_REPO_MISC4DEV_URL=https://gitlab.com/koha-community/koha-misc4dev.git DEBUG_GIT_REPO_MISC4DEV_BRANCH=master @@ -43,4 +43,4 @@ CPAN=no INSTALL_MISSING_FROM_CPANFILE=no KEYCLOAK_ADMIN=keycloak KEYCLOAK_ADMIN_PASS=keycloak -KEYCLOAK_REALM=koha \ No newline at end of file +KEYCLOAK_REALM=koha