From 44c8767c77144e5953dcd57137b7c2778a241f03 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 19 Oct 2023 14:06:34 -0400 Subject: [PATCH] do mailmap on win --- install-windows.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install-windows.sh b/install-windows.sh index a8c68ae..3dcff82 100644 --- a/install-windows.sh +++ b/install-windows.sh @@ -35,6 +35,11 @@ ln -sf $EWCONFIG_ROOT/configs/git/.gitconfig ~/.gitconfig ln -sf $EWCONFIG_ROOT/configs/sssh/allowed_signers ~/.ssh/allowed_signers || true ln -sf $EWCONFIG_ROOT/configs/git/.mailmap ~/.config/git/.mailmap +# Copy the global mailmap file once +if [ ! -f ~/.config/git/config-fragments/global-mailmap.gitconfig ]; then + cp $EWCONFIG_ROOT/configs/git/config-fragments/global-mailmap.gitconfig ~/.config/git/config-fragments/global-mailmap.gitconfig +fi + # Configure SSH ln -sf $EWCONFIG_ROOT/configs/ssh/config ~/.ssh/config chmod 644 "$HOME/.ssh/config"