From a4d718840057c000adc283cc746de010d0c5d19e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20E=2E=20G=C3=B3mez?= Date: Thu, 13 Oct 2022 16:18:01 -0500 Subject: [PATCH] Error in URLs and complete "update all" --- update_from_repo.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/update_from_repo.sh b/update_from_repo.sh index 5df231f..30cd2f0 100755 --- a/update_from_repo.sh +++ b/update_from_repo.sh @@ -101,7 +101,7 @@ gt_vendor01 () gt_vendor02 () { REPO="Electronic documents by Avancys" - SRC=git@gitlab.com:mgarcia.avancys/v14-electronic-documents-agofer.git + SRC=ssh://git@gitlab.com:mgarcia.avancys/v14-electronic-documents-agofer.git DEST=./vendor02/ OPTIONS="" if [ ! -d "$DEST" ]; then @@ -142,10 +142,12 @@ gt_custom () gt_all () { - gt_core # Download from repo Odoo core - gt_community # Download from repo OCA modules - gt_vendor # Download from repo Avancys modules - gt_custom # Download from repo Custom modules + gt_core # Download from Odoo core repo + gt_community # OCA modules repo, using git submodules + gt_vendor # Avancys main repo + gt_vendor01 # In-house replacement repo for removed Avancys modules + gt_vendor02 # Avancys e-document modules + gt_custom # Custom in-house modules } if (($# == 0))