X-Git-Url: https://git.ao2.it/drupal-init-tools.git/blobdiff_plain/1519f69760503e0895f60fbbbcd5bbfde7bf7071..c998fc0d092e0c5755931f2ddd779e97c72f131a:/libexec/bootstrap.sh diff --git a/libexec/bootstrap.sh b/libexec/bootstrap.sh index 63318a4..422fafe 100755 --- a/libexec/bootstrap.sh +++ b/libexec/bootstrap.sh @@ -52,6 +52,8 @@ do shift done +[ -f "bootstrap.conf" ] || { echo "Aborting, run this command from the Drupal project directory." 1>&2; exit 1; } + # shellcheck disable=SC1091 . bootstrap.conf @@ -79,12 +81,12 @@ then echo fi -SITE_LOCAL_PATH="${PWD}/web" +WEB_ROOT="${PWD}/web" command -v composer &> /dev/null || { echo "Aborting, 'composer' not available." 1>&2; exit 1; } command -v git &> /dev/null || { echo "Aborting, 'git' not available." 1>&2; exit 1; } -[ -d "$SITE_LOCAL_PATH" ] || composer install +[ -d "$WEB_ROOT" ] || composer install DRUSH="${PWD}/vendor/bin/drush" DRUPAL_CONSOLE="${PWD}/vendor/bin/drupal" @@ -97,17 +99,17 @@ DRUPAL_CONSOLE="${PWD}/vendor/bin/drupal" # https://github.com/drupal-composer/drupal-project/issues/249 if ! echo "$INSTALLATION_PROFILE" | grep -q -E "^(minimal|standard)$"; then - if [ -d "${SITE_LOCAL_PATH}/profiles/${INSTALLATION_PROFILE}" -a "$OVERWRITE_PROFILE" != "true" ]; + if [ -d "${WEB_ROOT}/profiles/${INSTALLATION_PROFILE}" ] && [ "$OVERWRITE_PROFILE" != "true" ]; then echo "Installation profile '$INSTALLATION_PROFILE' already there." 1>&2 echo "Use --overwrite-profile to copy over it." 1>&2 exit 1 else - cp -a "$INSTALLATION_PROFILE" "${SITE_LOCAL_PATH}/profiles" + cp -a "$INSTALLATION_PROFILE" "${WEB_ROOT}/profiles" fi fi -pushd "$SITE_LOCAL_PATH" +pushd "$WEB_ROOT" # Update the install_profile if it's already there if grep -q "^\\\$settings\['install_profile'\] =" sites/default/settings.php;