Skip to content

Commit

Permalink
feat(apline-toolbox): rename GITCONFIG_USER_EMAIL to GITCONFIG_USER_MAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
prehor committed Jul 7, 2024
1 parent b3f5964 commit f72f929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/alpine-toolbox/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f72f929

Please sign in to comment.