X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=bin%2Fsetup.sh;h=683bf5775cf4f4a55d478ecd8b1af92c943c6dec;hb=7f9236da98ac79d9d41f74ccb990b4b60499a164;hp=2badb46673d68eafbc7d647b88bf289a0f51e82c;hpb=4a1dfeca8a8b4e26b3c44187c5975c7c9aafc16f;p=civicrm-core.git diff --git a/bin/setup.sh b/bin/setup.sh index 2badb46673..683bf5775c 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 @@ -209,9 +211,9 @@ fi if [ -n "$DO_FLUSH" ]; then pushd "$CALLEDPATH/.." - # reset config_backend and userFrameworkResourceURL which gets set + # reset userFrameworkResourceURL which gets set # when config object is initialized - $MYSQLCMD -e "UPDATE civicrm_domain SET config_backend = NULL; UPDATE civicrm_setting SET value = NULL WHERE name = 'userFrameworkResourceURL';" + $MYSQLCMD -e "UPDATE civicrm_setting SET value = NULL WHERE name = 'userFrameworkResourceURL';" popd fi