From 3c9ef5b93745ee77887e8632db771c231f4efacc Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sun, 6 Aug 2023 19:03:45 +0200 Subject: [PATCH] Ensure that we are using the "main" branchs of the repositories. --- bootstrap/socInstaller.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bootstrap/socInstaller.py b/bootstrap/socInstaller.py index 6d29016a..15ca8ec4 100755 --- a/bootstrap/socInstaller.py +++ b/bootstrap/socInstaller.py @@ -605,17 +605,18 @@ try: if conf.doAlliance: if conf.rmSource: gitAlliance.removeLocalRepo() gitAlliance.clone () - #gitAlliance.checkout( 'devel' ) + gitAlliance.checkout( 'main' ) if conf.doCoriolis: if conf.rmSource: gitCoriolis.removeLocalRepo() gitCoriolis.clone () - gitCoriolis.checkout( 'devel' ) + gitCoriolis.checkout( 'main' ) gitCoriolis.submoduleInit() gitCoriolis.submoduleUpdate() if conf.rmSource: gitBenchs.removeLocalRepo() gitBenchs.clone() + gitBenchs.checkout( 'main' ) if conf.rmBuild: for entry in os.listdir(conf.rootDir):