Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default to Drush 8 for both Drupal 7 & 8 because dev-master now needs PHP 5.5+ #71

Merged
merged 1 commit into from
Mar 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion environments/drupal-7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function drupal_ti_clear_caches() {
drush cc all
}

export DRUPAL_TI_DRUSH_VERSION="drush/drush:dev-master"
export DRUPAL_TI_DRUSH_VERSION="drush/drush:8.*"
export DRUPAL_TI_SIMPLETEST_FILE="scripts/run-tests.sh"
export DRUPAL_TI_MODULES_PATH="sites/all/modules"
export DRUPAL_TI_DRUPAL_BASE="$TRAVIS_BUILD_DIR/../drupal-7"
Expand Down
2 changes: 1 addition & 1 deletion environments/drupal-8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function drupal_ti_clear_caches() {
drush cr
}

export DRUPAL_TI_DRUSH_VERSION="drush/drush:dev-master"
export DRUPAL_TI_DRUSH_VERSION="drush/drush:8.*"
export DRUPAL_TI_SIMPLETEST_FILE="core/scripts/run-tests.sh"
export DRUPAL_TI_MODULES_PATH="modules"
export DRUPAL_TI_DRUPAL_BASE="$TRAVIS_BUILD_DIR/../drupal-8"
Expand Down