Skip to content

Commit b2e3ae1

Browse files
committed
Fixes acquia#2072: temporarily disabling checking of features overrides.
1 parent cfe62bd commit b2e3ae1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Robo/Commands/Setup/ConfigCommand.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,12 @@ public function import() {
8585
throw new BltException("Failed to import configuration!");
8686
}
8787

88-
$this->checkFeaturesOverrides();
88+
if ($this->getConfigValue('cm.features.no-overrides')) {
89+
$this->logger->warning("Features override checks are currently disabled due to a Drush 9 incompatibility.");
90+
// @codingStandardsIgnoreLine
91+
// $this->checkFeaturesOverrides();
92+
}
93+
8994
$this->checkConfigOverrides($cm_core_key);
9095

9196
$result = $this->invokeHook('post-config-import');

0 commit comments

Comments
 (0)