Skip to content

Commit

Permalink
Merge pull request LionsAd#94 from mglaman/d8-composer-followup
Browse files Browse the repository at this point in the history
D8 composer require not pulling local path
  • Loading branch information
LionsAd authored Sep 20, 2016
2 parents 81e462a + 29e8519 commit 9b963a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions environments/drupal-8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ function drupal_ti_install_drupal() {
git clone --depth 1 --branch "$DRUPAL_TI_CORE_BRANCH" http://git.drupal.org/project/drupal.git
cd drupal
composer install
composer config repositories.drupal composer https://packages.drupal.org/8
php -d sendmail_path=$(which true) ~/.composer/vendor/bin/drush.php --yes -v site-install "$DRUPAL_TI_INSTALL_PROFILE" --db-url="$DRUPAL_TI_DB_URL"
drush use $(pwd)#default
}
Expand All @@ -29,7 +28,8 @@ function drupal_ti_ensure_module_linked() {
fi

composer config repositories.$DRUPAL_TI_MODULE_NAME path $TRAVIS_BUILD_DIR
composer require drupal/$DRUPAL_TI_MODULE_NAME
composer config repositories.drupal composer https://packages.drupal.org/8
composer require drupal/$DRUPAL_TI_MODULE_NAME *@dev
}

export DRUPAL_TI_DRUSH_VERSION="drush/drush:8.0.*"
Expand Down

0 comments on commit 9b963a2

Please sign in to comment.