From f72f929246260ace5b7c605146d39857fc81d65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=98eho=C5=99?= Date: Sun, 7 Jul 2024 12:52:27 +0200 Subject: [PATCH] feat(apline-toolbox): rename GITCONFIG_USER_EMAIL to GITCONFIG_USER_MAIL --- apps/alpine-toolbox/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/alpine-toolbox/entrypoint.sh b/apps/alpine-toolbox/entrypoint.sh index 368c49d..6f5f1ba 100755 --- a/apps/alpine-toolbox/entrypoint.sh +++ b/apps/alpine-toolbox/entrypoint.sh @@ -12,8 +12,8 @@ if [ ! -e ~/.gitconfig ]; then autosetuprebase = always [user] EOF - if [ -n "${GITCONFIG_USER_EMAIL}" ]; then - echo " email = ${GITCONFIG_USER_EMAIL}" >> ~/.gitconfig + if [ -n "${GITCONFIG_USER_MAIL}" ]; then + echo " email = ${GITCONFIG_USER_MAIL}" >> ~/.gitconfig fi if [ -n "${GITCONFIG_USER_NAME}" ]; then echo " name = ${GITCONFIG_USER_NAME}" >> ~/.gitconfig