I am getting a vssget error using ant.
I have all the setting correct, I assumed.
my build.xml file:
-------------------------------------
<project name="TestVSS" default="getsrc" basedir=".">
<target name="getsrc">
<vssget localPath="." recursive="true" vsspath="/vssproject/src" writable="false" />
</target>
<target name="compile" depends="TssVSS">
<javac..../>
</target>
</project>
--------------------------------------
when I execute ant, it gets all the files in the project. But at the end it display a error
message.
Like this:
-------------------------------------------------
[vssget] file1.java
[vssget] file2.java
[vssget] ......
....
[vssget]
BUILD FAILED
D:\localdir\src\build.xml:3: Failed executing: ss Get $/vssproject/src -GLD:\localdir\src
-I- -R
------------------------------------------------
Once it failed, it will not go next target.
Do you know why is displaying this FAILED message even though it retrieve the vss files?
Thanks Will
|