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-28 13:47:28 +0100
commit15d37a4f9ca082217bd884ae0f875603003fffee (patch)
tree6115c6cbc8cc776d848cb1a5c1b8c95b0166d26f
parent5d56db24f8741a8aedd6a3cc93ec24f829e0a24b (diff)
downloadmeta-updater-15d37a4f9ca082217bd884ae0f875603003fffee.tar.gz
oe-selftest.sh: This also now requires setting git identity.
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)