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

Commit b48b0c2

Browse files
authored
Fixing bug in blt init (#360)
1 parent 7a308f2 commit b48b0c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phing/tasks/blt.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<echo>Merging BLT's composer.json template with your project's composer.json.</echo>
4343
<echo>This MAY overwrite some existing values.</echo>
4444
<!--Values in the project's existing composer.json file will be overwritten.-->
45-
<exec dir="${repo.root}" command="${repo.root}/vendor/bin/blt-console composer:munge ${repo.root}/composer.json ${blt.root}/template/composer.json > ${repo.root}/composer.json.tmp" logoutput="true" checkreturn="true" level="info" passthru="true"/>
45+
<exec dir="${repo.root}" command="${repo.root}/vendor/bin/blt-console composer:munge ${repo.root}/composer.json ${blt.root}/template/composer.json > ${repo.root}/composer.json.tmp" logoutput="true" checkreturn="true" level="info"/>
4646
<!--@todo Find out why can't we just redirect output directly back to composer.json. -->
4747
<exec dir="${repo.root}" command="mv ${repo.root}/composer.json.tmp ${repo.root}/composer.json" logoutput="true" checkreturn="true" level="info" passthru="true"/>
4848
<echo>If your composer.json was modified, you need to run "composer update".</echo>
@@ -53,7 +53,7 @@
5353
<echo>Merging BLT's project.yml template with your project's project.yml</echo>
5454
<echo>This WILL NOT overwrite existing values.</echo>
5555
<!--Values in the project's existing project.yml file will be preserved and not overridden.-->
56-
<exec dir="${repo.root}" command="${repo.root}/vendor/bin/blt-console yaml:munge ${blt.root}/template/project.yml ${repo.root}/project.yml > ${repo.root}/project.yml.tmp" logoutput="true" checkreturn="true" level="info" passthru="true"/>
56+
<exec dir="${repo.root}" command="${repo.root}/vendor/bin/blt-console yaml:munge ${blt.root}/template/project.yml ${repo.root}/project.yml > ${repo.root}/project.yml.tmp" logoutput="true" checkreturn="true" level="info"/>
5757
<!--@todo Find out why can't we just redirect output directly back to project.yml. -->
5858
<exec dir="${repo.root}" command="mv ${repo.root}/project.yml.tmp ${repo.root}/project.yml" logoutput="true" checkreturn="true" level="info" passthru="true"/>
5959
<echo>project.yml has been modified.</echo>

0 commit comments

Comments
 (0)