From 91077b261f6adcde8f8c2301fedb2f9122b17448 Mon Sep 17 00:00:00 2001 From: Antony Denyer Date: Wed, 18 Sep 2019 17:33:47 +0100 Subject: [PATCH] build: fix email address for git --- scripts/common.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.bash b/scripts/common.bash index 804d7eb4b..28e4aa065 100755 --- a/scripts/common.bash +++ b/scripts/common.bash @@ -3,7 +3,7 @@ set -eo pipefail [[ "$TRACE" ]] && set -x configure_github_user() { - git config --global user.email "email@antonydenyer.com" + git config --global user.email "git@antonydenyer.co.uk" git config --global user.name "Antony Denyer" }