|
Re: Easy way to access SVN revision in code?
This works for ant:
<condition property="isWindows">
<os family="windows" />
</condition>
<target name="do.run.Windows" if="isWindows">
<exec executable="cmd" dir="${your-target-dir}" >
<arg line="/C command-to-run arg1 arg2 arg3" />
</exec>
</target>
|