summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2020-02-12 16:48:17 +0100
committerLaurent Bonnans <laurent.bonnans@here.com>2020-02-12 16:48:17 +0100
commit177975cf270f67d6db5fd0516edf775a4382b29b (patch)
treece1ff0b023c3741179cccd3343fce1cba96054dc
parent9ac941e5536bbaf30436826983fca579c2df2ef5 (diff)
downloadmeta-updater-fix/git-repo-id.tar.gz
Manually set a git identity in CIfix/git-repo-id
repo cannot do without right now Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
-rwxr-xr-xscripts/ci/checkout-oe.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/checkout-oe.sh b/scripts/ci/checkout-oe.sh
index e8a2473..ed74595 100755
--- a/scripts/ci/checkout-oe.sh
+++ b/scripts/ci/checkout-oe.sh
@@ -19,6 +19,10 @@ mkdir -p updater-repo
19 19
20cd updater-repo 20cd updater-repo
21 21
22# it seems like it's always required now, even if repo is only used to fetch
23git config --global user.email "meta-updater-ci@example.org"
24git config --global user.name "meta-updater-ci"
25
22if [ -d .repo/manifests ]; then 26if [ -d .repo/manifests ]; then
23 git -C .repo/manifests reset --hard 27 git -C .repo/manifests reset --hard
24fi 28fi