We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe62bd commit b2e3ae1Copy full SHA for b2e3ae1
src/Robo/Commands/Setup/ConfigCommand.php
@@ -85,7 +85,12 @@ public function import() {
85
throw new BltException("Failed to import configuration!");
86
}
87
88
- $this->checkFeaturesOverrides();
+ 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
+
94
$this->checkConfigOverrides($cm_core_key);
95
96
$result = $this->invokeHook('post-config-import');
0 commit comments