Skip to content

Commit ac36d10

Browse files
committed
Fixes acquia#2072: temporarily disabling checking of features overrides.
1 parent 0dcefe8 commit ac36d10

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Robo/Commands/Setup/ConfigCommand.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ public function import() {
8181
throw new BltException("Failed to import configuration!");
8282
}
8383

84-
$this->checkFeaturesOverrides();
84+
if ($this->getInspector()->getDrushMajorVersion() == 8) {
85+
$this->checkFeaturesOverrides();
86+
}
8587
$this->checkConfigOverrides($cm_core_key);
8688

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

0 commit comments

Comments
 (0)