Hi,
I have starnge behaviour, which seems consistent accross various
machines and platforms that I have tried it on. I have an ant file
that does a succession of checkouts. For the first one it uses javahl,
but for all the following ones it decides to use the command line
interface. Here is the relevant portion of the ant build file:
<target name="-svn-checkout">
<echo>Checkout srcUrl="${svn.src}" destPath="${work.dir}"</echo>
<svn>
<checkout url="${svn.src}" destPath="${work.dir}"/>
</svn>
</target>
<target name="getScormEngineNet" depends="init">
<antcall target="-svn-checkout">
<param name="svn.src" value="${svn.scormenginenet.url}/CentralInterface" />
<param name="work.dir"
value="${client.build.dir}/RusticiSoftware.ScormContentPlayer.CentralInterface"/>
</antcall>
<antcall target="-svn-checkout">
<param name="svn.src" value="${svn.scormenginenet.url}/DataHelp"/>
<param name="work.dir"
value="${client.build.dir}/RusticiSoftware.ScormContentPlayer.DataHelp"/>
</antcall>
<antcall target="-svn-checkout">
<param name="svn.src" value="${svn.scormenginenet.url}/Logic"/>
<param name="work.dir"
value="${client.build.dir}/RusticiSoftware.ScormContentPlayer.Logic"/>
</target>
Here is the (lightly edited) output:
hulahoop$ ant -f newintegration.xml getScormEngineNet
Buildfile: newintegration.xml
init:
getScormEngineNet:
-svn-checkout:
[svn] Using javahl
Svn : Checking out a working copy from a repository :
checkout -r HEAD
https://svn.myrepo.com/svn/projects//Products/Fred/tags/Release
2007.1/CentralInterface
notify.checkout
-svn-checkout:
[svn] Using command line interface
Svn : Checking out a working copy from a repository :
co -r HEAD https://svn.myrepo.com/svn/projects//Products/Fred/tags/Release
2007.1/DataHelp_at_HEAD
/Users/keving/working/RusticiBuilder/build/DataHelp --non-interactive
Checked out revision 3673.
-svn-checkout:
[svn] Using command line interface
Svn : Checking out a working copy from a repository :
co -r HEAD https://svn.myrepo.com/svn/projects//Products/Fred/tags/Release
2007.1/Logic_at_HEAD /Users/keving/working/RusticiBuilder/build/Logic
--non-interactive
Checked out revision 3673.
Any advice much appreciated.
cheers
k
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subclipse.tigris.org
For additional commands, e-mail: users-help_at_subclipse.tigris.org
Received on 2008-01-25 14:11:04 CET