Skip to content

Commit

Permalink
Fixes #1425: Not all BLT commands showing up when running blt list. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored Apr 24, 2017
1 parent ea5d4a1 commit da05788
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion phing/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@

<target name="list" hidden="true">
<exec dir="${repo.root}" command="cat ${blt.root}/scripts/blt/ascii-art.txt" logoutput="true" passthru="true" checkreturn="false"/>
<exec dir="${blt.root}" command="${repo.root}/vendor/bin/phing -f ${phing.dir}/build.xml -q -l" passthru="true"/>
<echo>The following commands are provided by Phing:</echo>
<exec dir="${repo.root}" command="${repo.root}/vendor/bin/phing -f ${phing.dir}/build.xml -q -l" passthru="true"/>
<echo>The following commands are provided by Robo:</echo>
<exec dir="${repo.root}" command="${blt.root}/bin/blt-robo list" logoutput="true" passthru="true"/>
</target>

<target name="target-hook:invoke" description="Executes a command defined in the target-hooks array." hidden="true">
Expand Down

0 comments on commit da05788

Please sign in to comment.