From 5976e19d10a91d5d9e066b64be3681e30263d846 Mon Sep 17 00:00:00 2001 From: Tom Wiesing Date: Tue, 8 Mar 2022 13:20:53 +0100 Subject: [PATCH] provision_container: Fix for new composer version --- .../resources/compose/barrel/scripts/provision_container.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/distillery/resources/compose/barrel/scripts/provision_container.sh b/distillery/resources/compose/barrel/scripts/provision_container.sh index 2fc14ef..a26d6f0 100644 --- a/distillery/resources/compose/barrel/scripts/provision_container.sh +++ b/distillery/resources/compose/barrel/scripts/provision_container.sh @@ -62,6 +62,9 @@ function drupal_sites_permission_workaround() { chmod -R u+w "$WEB_DIR/sites/" || true } +# setup allow-plugins +composer config allow-plugins true || true + # Create a new composer project. log_info " => Creating composer project" if [ -z "${DRUPAL_VERSION}" ]; then