From afc542ea4779eca0450a58daa0d59b91523ef05d Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Mon, 24 Apr 2017 22:53:37 +0200 Subject: Only add if file does not exist already MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6c55d1ab9c148fa71f2fa4f8973684032c77f4d8 Signed-off-by: Jan-Simon Möller --- jjb/common/include-agl-header.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'jjb/common/include-agl-header.sh') diff --git a/jjb/common/include-agl-header.sh b/jjb/common/include-agl-header.sh index cab53f30..51865ea9 100644 --- a/jjb/common/include-agl-header.sh +++ b/jjb/common/include-agl-header.sh @@ -140,12 +140,11 @@ set | grep ^MACHINE || true set -x -#rm -rf ~/.gitconfi* || true +rm -rf ~/.gitconfi* || true -git config --help - -git config --global --replace-all user.email "jenkins-dontreply@build.automotivelinux.org" -git config --global --replace-all user.name "jenkins-dontreply@build.automotivelinux.org" +if test ! -f ~/.gitconfig ; then + git config --global --add user.email "jenkins-dontreply@build.automotivelinux.org" --add user.name "jenkins-dontreply@build.automotivelinux.org" +fi #git config --global user.email "jenkins-dontreply@build.automotivelinux.org" #sync -- cgit 1.2.3-korg