Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 6f5b38c

Browse files
bkosbornegrasmash
authored andcommitted
Fix broken core-only config strategy (#1358)
The directory path for checking if the core.extension.yml file exists needs to be rooted to `${docroot}`. I think there was a similar fix that I saw for config-split strategy, but it was missed for core-only.
1 parent 39a0ce5 commit 6f5b38c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phing/tasks/setup.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
<target name="setup:config-import:core-only">
225225

226226
<if>
227-
<available file="${cm.core.dirs.${cm.core.key}.path}/core.extension.yml"/>
227+
<available file="${docroot}/${cm.core.dirs.${cm.core.key}.path}/core.extension.yml"/>
228228
<then>
229229
<drush command="config-import" assume="yes" alias="${drush.alias}" passthru="false">
230230
<param>${cm.core.key}</param>

0 commit comments

Comments
 (0)