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

Commit 8687e9b

Browse files
authored
Renaming acsf.repo_branch to acsf.package. (#789)
1 parent f173a2a commit 8687e9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

phing/tasks/acsf.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<project name="acsf" default="acsf:init">
22

33
<!-- Set the acsf repo/branch-->
4-
<property name="acsf.repo_branch" value="drupal/acsf:^8" override="false"/>
4+
<property name="acsf.package" value="drupal/acsf:^8" override="false"/>
55
<target name="acsf:init" description="Initializes ACSF support for project.">
66
<echo>Adding acsf module as a dependency.</echo>
7-
<echo>Using ${acsf.repo_branch} use -Dacsf.repo_branch= to change.</echo>
8-
<exec dir="${repo.root}" command="composer require ${acsf.repo_branch}" logoutput="true" checkreturn="true" passthru="true" level="${blt.exec_level}"/>
7+
<echo>In future, you may use pass a custom value for acsf.package to override default version. E.g., blt acsf:init -Dacsf.package='drupal/acsf:8.1.x-dev'</echo>
8+
<exec dir="${repo.root}" command="composer require ${acsf.package}" logoutput="true" checkreturn="true" passthru="true" level="${blt.exec_level}"/>
99
<!-- Run the acsf init commands. -->
1010
<phingcall target="acsf:init:drush"/>
1111
</target>

0 commit comments

Comments
 (0)