summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2020-02-27 12:26:03 +0100
committerPatrick Vacek <patrickvacek@gmail.com>2020-02-27 12:26:03 +0100
commit660fe8d258e996360345ff827e09a897ba059503 (patch)
tree0b061335cecfbd91cdbfec0393dde8da1d30faec
parent427e0d1b459bcd98871a3a78965dd780242d01ba (diff)
downloadmeta-updater-fix/sota-bleeding-native.tar.gz
oe-selftest.sh: This also now requires setting git identity.fix/sota-bleeding-native
Not sure why this only started cropping up now. Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
-rwxr-xr-xscripts/ci/oe-selftest.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/ci/oe-selftest.sh b/scripts/ci/oe-selftest.sh
index 178e7c1..d441d02 100755
--- a/scripts/ci/oe-selftest.sh
+++ b/scripts/ci/oe-selftest.sh
@@ -22,5 +22,9 @@ set -x
22# see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67 22# see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67
23mkdir -p "tmp/log" 23mkdir -p "tmp/log"
24 24
25# This is apparently required here now as well.
26git config --global user.email "meta-updater-ci@example.org"
27git config --global user.name "meta-updater-ci"
28
25oe-selftest -r "$@" 29oe-selftest -r "$@"
26) 30)