diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-24 23:09:53 +0200 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-04-24 23:09:53 +0200 |
commit | f1a042959c83bf712886863b98318159decf555d (patch) | |
tree | ce1e240bf2205e9ad14de52664db884a1c2df675 | |
parent | 40afd99f2b14af539fe50fc35941f3198e922d13 (diff) |
Remove --replace-all as it only works for existing entries
Change-Id: I8e77728ab89545d284f56d8f556fa67724110fa3
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | jjb/common/include-agl-header.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/common/include-agl-header.sh b/jjb/common/include-agl-header.sh index 6b303d3f..4ee4cc6c 100644 --- a/jjb/common/include-agl-header.sh +++ b/jjb/common/include-agl-header.sh @@ -143,8 +143,8 @@ set -x #rm -rf ~/.gitconfi* || true if test ! -f ~/.gitconfig ; then - git config --global --replace-all user.email "jenkins-dontreply@build.automotivelinux.org" - git config --global --replace-all user.name "jenkins-dontreply@build.automotivelinux.org" + git config --global user.email "jenkins-dontreply@build.automotivelinux.org" + git config --global user.name "jenkins-dontreply@build.automotivelinux.org" fi #git config --global user.email "jenkins-dontreply@build.automotivelinux.org" |