Skip to content

Commit

Permalink
Drush does not use .php extension after 9.x (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
taz77 authored and WengerK committed Jun 24, 2019
1 parent 5316cdd commit e6c53cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion environments/drupal-7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
function drupal_ti_install_drupal() {
drush --yes dl drupal-7 --drupal-project-rename=drupal
cd drupal
php -d sendmail_path=$(which true) ~/.composer/vendor/bin/drush.php --yes site-install "$DRUPAL_TI_INSTALL_PROFILE" --db-url="$DRUPAL_TI_DB_URL"
php -d sendmail_path=$(which true) ~/.composer/vendor/bin/drush --yes site-install "$DRUPAL_TI_INSTALL_PROFILE" --db-url="$DRUPAL_TI_DB_URL"
drush use $(pwd)#default
}

Expand Down
2 changes: 1 addition & 1 deletion environments/drupal-8.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function drupal_ti_install_drupal() {
composer require $COMPOSER_EXTRA_DEPENDENCIES --no-interaction
fi

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"
php -d sendmail_path=$(which true) ~/.composer/vendor/bin/drush --yes -v site-install "$DRUPAL_TI_INSTALL_PROFILE" --db-url="$DRUPAL_TI_DB_URL"
drush use $(pwd)#default
}

Expand Down

0 comments on commit e6c53cf

Please sign in to comment.