Skip to content
Snippets Groups Projects
Commit 2f3f3c26 authored by david_williams's avatar david_williams
Browse files

fix some refresh, or run from scratch abilities

parent 4fa630e1
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
the environment variables on your operating system are not, e.g. it will the environment variables on your operating system are not, e.g. it will
be ${env.Path} not ${env.PATH} on Windows --> be ${env.Path} not ${env.PATH} on Windows -->
<property environment="env" /> <property environment="env" />
<!-- <!--
Let users override standard properties, if desired. Let users override standard properties, if desired.
If directory, file, or some properties do not exist, If directory, file, or some properties do not exist,
...@@ -20,18 +20,19 @@ ...@@ -20,18 +20,19 @@
<!-- = = = end standard properties pattern = = = --> <!-- = = = end standard properties pattern = = = -->
<!-- if not otherwise set, the following are good default values --> <!-- if not otherwise set, the following are good default values -->
<property name="checkout.wtpbuilder.clean" value="true"/> <property name="checkout.wtpbuilder.clean"
value="true" />
<property name="mapVersionTag" value="HEAD" /> <property name="mapVersionTag" value="HEAD" />
<property name="mapCvsRoot" <property name="mapCvsRoot"
value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" /> value=":${cvsProtocol}:${cvsUser}@${cvsServer}:${cvsRoot}" />
<property name="codir" <property name="codir"
value="${env.BUILD_HOME}/build-node/checkout/${checkoutprojectname}" /> value="${env.BUILD_HOME}/build-node/checkout/${checkoutprojectname}" />
<echo message="checkoutprojectname: ${checkoutprojectname}" /> <echo message="checkoutprojectname: ${checkoutprojectname}" />
<target name="checkout" if="checkoutprojectname"> <target name="checkout" if="checkoutprojectname">
<!-- we always check and init the builder --> <!-- we always check and init the builder -->
<antcall target="getwtpbuilder" /> <antcall target="getwtpbuilder" />
...@@ -138,9 +139,12 @@ ...@@ -138,9 +139,12 @@
</target> </target>
<target name="check.clean"> <target name="check.clean">
<echo message="checkout.wtpbuilder.clean: ${checkout.wtpbuilder.clean}" />
<condition property="doClean"> <condition property="doClean">
<equals arg1="${checkout.wtpbuilder.clean}" <equals arg1="${checkout.wtpbuilder.clean}"
arg2="true" /> arg2="true"
trim="true"
casesensitive="false" />
</condition> </condition>
</target> </target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment