Skip to content

Instantly share code, notes, and snippets.

@blueyed
Forked from saces/stop the node with ant
Created July 1, 2010 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blueyed/460587 to your computer and use it in GitHub Desktop.
Save blueyed/460587 to your computer and use it in GitHub Desktop.
<target name="run">
<exec executable="sh"
failifexecutionfails="true"
failonerror="true"
dir="${testnode.dir}">
<arg value="run.sh"/>
<arg value="start"/>
</exec>
</target>
<!-- stop -->
<target name="stop">
<exec executable="sh"
failifexecutionfails="true"
failonerror="true"
dir="${testnode.dir}">
<arg value="run.sh"/>
<arg value="stop"/>
</exec>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment