* Auto start local install when run build complete.

This commit is contained in:
Heng Sin Low 2006-11-28 13:37:40 +00:00
parent 7959a0bdc1
commit 73be1f688c
1 changed files with 22 additions and 0 deletions

View File

@ -64,7 +64,29 @@
dest="${env.ADEMPIERE_ROOT}"
overwrite="yes"/>
<!-- Run Setup -->
<!--
<ant inheritAll="false" dir="${env.ADEMPIERE_HOME}" target="setup"/>
-->
<antcall target="runSetupWin"></antcall>
<antcall target="runSetupNonWin"></antcall>
</target>
<target name="runSetupInit">
<condition property="isWindows">
<os family="windows" />
</condition>
</target>
<target name="runSetupWin" depends="runSetupInit" if="isWindows" >
<exec dir="${env.ADEMPIERE_HOME}" executable="RUN_setup.bat"
spawn="false" resolveexecutable="true">
</exec>
</target>
<target name="runSetupNonWin" depends="runSetupInit" unless="isWindows" >
<exec dir="${env.ADEMPIERE_HOME}" executable="RUN_setup.sh"
spawn="false" resolveexecutable="true">
</exec>
</target>
<!-- ================================================ -->