From 54d3eb28c73736b170724ec640d19df5f092b0b2 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 15 Jan 2020 17:38:50 -0800 Subject: [PATCH] bin/setup.sh - Skip 'composer install' on D8 --- bin/setup.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/setup.sh b/bin/setup.sh index 2badb46673..cabd301038 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -141,8 +141,10 @@ set -x if [ -n "$DO_DOWNLOAD" ]; then pushd "$CALLEDPATH/.." - COMPOSER=$(pickcmd composer composer.phar) - $COMPOSER install + if [ "$GENCODE_CMS" != "Drupal8" ]; then + COMPOSER=$(pickcmd composer composer.phar) + $COMPOSER install + fi if has_commands karma ; then ## dev dependencies have been installed globally; don't force developer to redownload -- 2.25.1