Skip to content

Commit

Permalink
Add a target to run any verb on any channel.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Sep 2, 2011
1 parent 9041716 commit f8ceb86
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -901,6 +901,21 @@
</sequential>
</macrodef>

<!--
flow
Prompt for a channel name and a verb, and run that verb in that channel.
-->
<target name="flow">
<input addproperty="channel">
Please select the channel to use (e.g., us_incommon):
</input>
<input addproperty="verb">
Please select the verb to execute (e.g., import):
</input>
<CHANNEL.do channel="${channel}" verb="${verb}"/>
</target>

<!--
CHANNEL.import
Expand Down

0 comments on commit f8ceb86

Please sign in to comment.