Skip to content

Commit 468f53e

Browse files
committed
Merge remote-tracking branch 'upstream/8.x' into 8.x
2 parents f53b087 + 1b00659 commit 468f53e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ new release of Drupal core.
7373

7474
Follow the steps below to update your core files.
7575

76-
1. Run `composer update drupal/core`.
77-
1. Run `git diff` to determine if any of the scaffolding files have changed.
78-
Review the files for any changes and restore any customizations to
76+
1. Run `composer update drupal/core --with-dependencies` to update Drupal Core and its dependencies.
77+
1. Run `git diff` to determine if any of the scaffolding files have changed.
78+
Review the files for any changes and restore any customizations to
7979
`.htaccess` or `robots.txt`.
8080
1. Commit everything all together in a single commit, so `web` will remain in
8181
sync with the `core` when checking out branches or running `git bisect`.

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"drupal/token": "8.1.0-alpha2"
3838
},
3939
"require-dev": {
40-
"behat/mink": "~1.7",
40+
"behat/mink": "~1.7",
4141
"behat/mink-goutte-driver": "~1.2",
4242
"jcalderonzumba/gastonjs": "^1.1@dev",
4343
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
@@ -73,6 +73,7 @@
7373
"extra": {
7474
"installer-paths": {
7575
"web/core": ["type:drupal-core"],
76+
"web/libraries/{$name}": ["type:drupal-library"],
7677
"web/modules/contrib/{$name}": ["type:drupal-module"],
7778
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
7879
"web/themes/contrib/{$name}": ["type:drupal-theme"],

drush/policy.drush.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ function policy_drush_help_alter(&$command) {
3636
$command['options']['pm-force'] = 'Override site policy and allow Drush codebase management (pm-* commands)';
3737
}
3838
}
39-

scripts/composer/ScriptHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class ScriptHandler {
1515

1616
protected static function getDrupalRoot($project_root) {
17-
return $project_root . '/web';
17+
return $project_root . '/web';
1818
}
1919

2020
public static function createRequiredFiles(Event $event) {

0 commit comments

Comments
 (0)