Skip to content

Commit

Permalink
defaults.env: quote GIT_USER_NAME to avoid error when sourcing .env
Browse files Browse the repository at this point in the history
Since this commit:
df646b6 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.
  • Loading branch information
tuxayo authored and tomascohen committed Sep 11, 2023
1 parent af38083 commit 074ba3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions env/defaults.env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -43,4 +43,4 @@ CPAN=no
INSTALL_MISSING_FROM_CPANFILE=no
KEYCLOAK_ADMIN=keycloak
KEYCLOAK_ADMIN_PASS=keycloak
KEYCLOAK_REALM=koha
KEYCLOAK_REALM=koha

0 comments on commit 074ba3a

Please sign in to comment.