From 06d2754dd81c1e04d42b6acfcc767e9e23c6b584 Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Wed, 26 Jul 2017 13:56:15 +0200 Subject: Special case meta-renesas-rcar-gen3 as branches are not aligned MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6c4d7192c0b121beb50e777e49ecec9193361596 Signed-off-by: Jan-Simon Möller --- jjb/common/include-agl-repo.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'jjb/common/include-agl-repo.sh') diff --git a/jjb/common/include-agl-repo.sh b/jjb/common/include-agl-repo.sh index fee52137..1d27c71d 100644 --- a/jjb/common/include-agl-repo.sh +++ b/jjb/common/include-agl-repo.sh @@ -19,7 +19,11 @@ cd repoclone export REPODIR=`pwd` if test x"" = x"${RELEASE_VERSION}" -a x"" = x"${RELEASE_BRANCH}" ; then - repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + if test x"meta-renesas-rcar-gen3" = x"${TARGETPROJECT}" ; then + repo init --reference=/opt/AGL/preclone -q -b master -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + else + repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo + fi else repo init --reference=/opt/AGL/preclone -q -b $TARGETBRANCH -m ${RELEASE_BRANCH}_${RELEASE_VERSION}.xml -u https://gerrit.automotivelinux.org/gerrit/AGL/AGL-repo fi -- cgit 1.2.3-korg