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

Commit 9873bb8

Browse files
committed
Fixing toggle-modules targets.
1 parent 6c680db commit 9873bb8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

phing/tasks/ci.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@
3838
<phingcall target="setup:update">
3939
<property name="drush.alias" value="${drush.aliases.ci}"/>
4040
</phingcall>
41+
<phingcall target="ci:toggle-modules"/>
4142
</target>
4243

43-
<target name="ci:toggle-modules" description="Enables modules.ci.enable projects and uninstalls modules.ci.uninstall projects.">
44+
<target name="ci:toggle-modules" description="Enables modules.ci.enable projects and uninstalls modules.ci.uninstall projects." hidden="true">
4445
<phingcall target="setup:toggle-modules">
4546
<param name="enable" value="${modules.ci.enable}"/>
4647
<param name="uninstall" value="${modules.ci.uninstall}"/>

phing/tasks/local-sync.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@
3737
</phingcall>
3838
</target>
3939

40-
<target name="local:update" description="Update current database to reflect the state of the Drupal file system; uses local drush alias." depends="local:toggle-modules">
40+
<target name="local:update" description="Update current database to reflect the state of the Drupal file system; uses local drush alias.">
4141
<phingcall target="setup:update">
4242
<property name="drush.alias" value="${drush.aliases.local}"/>
4343
</phingcall>
44+
<phingcall target="local:toggle-modules"/>
4445
</target>
4546

4647
</project>

0 commit comments

Comments
 (0)