Skip to content
Extraits de code Groupes Projets
Valider 5db0a5b8 rédigé par Théo - Le Filament's avatar Théo - Le Filament
Parcourir les fichiers

fix: check if email_from is defined in crm (PR 1234)

parent 62e62008
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -43,7 +43,13 @@ RUN set -x; \
&& useradd --create-home --home-dir /opt/odoo --no-log-init odoo \
&& /bin/bash -c "mkdir -p /opt/odoo/{etc,odoo,additional_addons,private_addons,data,private}" \
&& mkdir /opt/odoo_commits \
&& git clone --single-branch --branch "${branch}" --depth 1 "${repo}" /tmp/repo \
&& git clone --filter=tree:0 --branch "${branch}" "${repo}" /tmp/repo \
# FIX begin: Merge pull request https://github.com/OCA/OCB/pull/1234/files
&& git -C /tmp/repo remote add odoolf https://github.com/lefilament/odoo \
&& git -C /tmp/repo fetch odoolf 14.0-fix-crm_lead-email \
&& git -C /tmp/repo checkout odoolf/14.0-fix-crm_lead-email \
&& git -C /tmp/repo rebase origin/14.0 \
# FIX end
&& commit="$(git -C /tmp/repo rev-parse HEAD)" \
&& mv /tmp/repo/* /opt/odoo/odoo/ \
&& echo "${repo};${commit}" > $SAVE_COMMITS_DIR/$SAVE_COMMITS_FILENAME \
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter