Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 6bd3d5a

Browse files
The 'staging' configuration store is now called 'sync'.
1 parent ffbc2cf commit 6bd3d5a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

config_extra.drush.inc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function config_extra_drush_command() {
2121
'aliases' => array('cm'),
2222
'arguments' => array(
2323
'site' => 'Alias for the site containing the other configuration data to merge.',
24-
'label' => "A config directory label (i.e. a key in \$config_directories array in settings.php). Defaults to 'staging'",
24+
'label' => "A config directory label (i.e. a key in \$config_directories array in settings.php). Defaults to 'sync'",
2525
),
2626
'options' => array(
2727
'base' => 'The commit hash or tag for the base of the three-way merge operation. This should be the most recent commit that was deployed to the site specified in the first argument.',
@@ -49,7 +49,7 @@ function config_extra_drush_command() {
4949
'examples' => array(
5050
'drush @dev config-merge @production' => 'Merge configuration changes from the production site with the configuration changes made on the development site.',
5151
'drush @dev config-merge /path/to/drupal#sitefolder' => 'Merge configuration changes from the site indicated by the provided site specification.',
52-
'drush config-merge --no-commit' => 'Merge configuration changes in the database of the current site with the configuration changes in its `staging` configuration store. The merged files will remain unstaged.',
52+
'drush config-merge --no-commit' => 'Merge configuration changes in the database of the current site with the configuration changes in its `sync` configuration store. The merged files will remain unstaged.',
5353
),
5454
'topics' => array('docs-cm'),
5555
);
@@ -106,7 +106,7 @@ function config_extra_drush_help($section) {
106106
* @param $config_label
107107
* Which configuration set (active, etaging, etc.) to operate on
108108
*/
109-
function drush_config_extra_config_merge($alias = '', $config_label = 'staging') {
109+
function drush_config_extra_config_merge($alias = '', $config_label = 'sync') {
110110
// Use in log and commit messages
111111
$site_label = $alias;
112112
// If '$alias' is a 'sites' folder, then convert it into a site

0 commit comments

Comments
 (0)