Skip to content
This repository was archived by the owner on Jun 9, 2023. It is now read-only.

Commit 36792e8

Browse files
Merge branch 'master' of github.com:drush-ops/drush
2 parents 4672b39 + d92e4ab commit 36792e8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

commands/core/config.drush.inc

-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ function config_drush_help($section) {
2222
return dt('Config commands');
2323
case 'meta:config:summary':
2424
return dt('Interact with the configuration system.');
25-
case 'drush:config-merge':
26-
return dt('Combine configuration data from this site with the configuration data of another site; if there are conflicts, open an interactive three-way merge tool comparing the changes with the base revision');
2725
}
2826
}
2927

tests/Unish/UnishTestCase.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ public static function get_tar_executable() {
109109
function tick() {
110110
static $chars = array('/', '-', '\\', '|');
111111
static $counter = 0;
112-
print $chars[($counter++ % 4)] . "\033[1D";
112+
// ANSI support is flaky on Win32, so don't try to do ticks there.
113+
if (!$this->is_windows()) {
114+
print $chars[($counter++ % 4)] . "\033[1D";
115+
}
113116
}
114117

115118
/**

0 commit comments

Comments
 (0)