From 80179bc1ebc4d722a87d4d5a4567e25280dd02b2 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Sun, 17 Sep 2017 17:27:15 +0900 Subject: [PATCH] fix git user email --- script/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/release.sh b/script/release.sh index 73ad57c3de9..a403dc36326 100755 --- a/script/release.sh +++ b/script/release.sh @@ -11,7 +11,7 @@ npm install --quiet npm run build npm run test-all [[ `git status --porcelain` ]] || exit 0 -git config user.email "kevin+electronbot@github.com" +git config user.email "electron@github.com" git config user.name "Electron Bot" git add . git commit -am "update apps" --author "Electron Bot "