From cc2dbc3e7a485f890e98e2d5777bc21c1fc1d615 Mon Sep 17 00:00:00 2001 From: Marcel Hibbe Date: Mon, 22 Feb 2021 16:55:01 +0100 Subject: [PATCH] Use valid email address Signed-off-by: Marcel Hibbe --- scripts/analysis/lint-up.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/analysis/lint-up.rb b/scripts/analysis/lint-up.rb index 57445a471..0c36607cd 100644 --- a/scripts/analysis/lint-up.rb +++ b/scripts/analysis/lint-up.rb @@ -178,7 +178,7 @@ previous_git_email = previous_git_email.strip # update git user name and email for this script system ("git config --local user.name '" + git_user + "'") -system ("git config --local user.email '.'") # set email blank +system ("git config --local user.email 'android@nextcloud.com'") system ("git remote rm origin") system ("git remote add origin https://" + git_user + ":" + git_token + "@github.com/nextcloud/talk-android")