mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
9 lines
267 B
Bash
9 lines
267 B
Bash
# Set identification from install inputs
|
|
if [[ -n "${OMARCHY_USER_NAME//[[:space:]]/}" ]]; then
|
|
git config --global user.name "$OMARCHY_USER_NAME"
|
|
fi
|
|
|
|
if [[ -n "${OMARCHY_USER_EMAIL//[[:space:]]/}" ]]; then
|
|
git config --global user.email "$OMARCHY_USER_EMAIL"
|
|
fi
|