Skip to content

Instantly share code, notes, and snippets.

@saces
Created July 1, 2010 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save saces/460574 to your computer and use it in GitHub Desktop.
Save saces/460574 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