fixed bug that prevented db.properties from being overwritten when building antclick in "all" target
This commit is contained in:
parent
871ba4e2ed
commit
d8aed70b77
1 changed files with 5 additions and 5 deletions
|
@ -101,11 +101,11 @@
|
||||||
<target name="antville" depends="export">
|
<target name="antville" depends="export">
|
||||||
<antcall target="package-zip">
|
<antcall target="package-zip">
|
||||||
<param name="filename" value="${package.name}"/>
|
<param name="filename" value="${package.name}"/>
|
||||||
<param name="path" value="${build.work}/apps/antville"/>
|
<param name="path" value="${build.work}/apps/${project}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="package-tgz">
|
<antcall target="package-tgz">
|
||||||
<param name="filename" value="${package.name}"/>
|
<param name="filename" value="${package.name}"/>
|
||||||
<param name="path" value="${build.work}/apps/antville"/>
|
<param name="path" value="${build.work}/apps/${project}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="cleanup"/>
|
<antcall target="cleanup"/>
|
||||||
</target>
|
</target>
|
||||||
|
@ -115,20 +115,20 @@
|
||||||
<!-- generate the antclick distribution packages -->
|
<!-- generate the antclick distribution packages -->
|
||||||
<!-- =================================================================== -->
|
<!-- =================================================================== -->
|
||||||
<target name="antclick" depends="export">
|
<target name="antclick" depends="export">
|
||||||
<mkdir dir="${build.work}"/>
|
|
||||||
<copy todir="${build.work}/">
|
<copy todir="${build.work}/">
|
||||||
<fileset dir="${build.extra}"
|
<fileset dir="${build.extra}"
|
||||||
includes="antclick.sh antclick.bat apps.properties
|
includes="antclick.sh antclick.bat apps.properties
|
||||||
launcher.jar server.properties"/>
|
launcher.jar server.properties"/>
|
||||||
</copy>
|
</copy>
|
||||||
|
<copy file="${build.extra}/db.properties"
|
||||||
|
todir="${build.work}/apps/${project}/code"
|
||||||
|
overwrite="true"/>
|
||||||
|
|
||||||
<cvs cvsRoot="${cvs.manage.root}"
|
<cvs cvsRoot="${cvs.manage.root}"
|
||||||
command="export"
|
command="export"
|
||||||
tag="${cvs.manage.tag}"
|
tag="${cvs.manage.tag}"
|
||||||
package="manage"
|
package="manage"
|
||||||
dest="${build.work}/apps"/>
|
dest="${build.work}/apps"/>
|
||||||
<copy file="${build.extra}/db.properties"
|
|
||||||
tofile="${build.work}/apps/${project}/code/db.properties"/>
|
|
||||||
|
|
||||||
<cvs cvsRoot="${cvs.hop.root}"
|
<cvs cvsRoot="${cvs.hop.root}"
|
||||||
command="export"
|
command="export"
|
||||||
|
|
Loading…
Add table
Reference in a new issue