Hi,
I'm trying to get the latest by promotion group using
ant script. I have the ff scripts:
<target name="getbypromotiongroup">
<pvcs repository="v:\Documentum"
pvcsproject="/Contracts"
promotiongroup="${pvcs.promotion.group}"
config="${pvcs.config.file}"
force="yes"
workspace="${pvcs.workspace}"/>
<tstamp/>
<property name="build.time" value="${TSTAMP} ${DSTAMP}"/>
<echoproperties destfile="${props.deploy}\buildinfo.properties">
<propertyset>
<propertyref prefix="build."/>
</propertyset>
</echoproperties>
</target>
After running the target, I got the ff exception:
BUILD FAILED
C:\int2\src\build.xml:100: Failed executing: get -cV:\Documentum\archives\cyi04i
20.cfg -Y -GIntegration @C:\int2\src\pvcs_ant_4405243211273511352.log. Return co
de was 1
at org.apache.tools.ant.taskdefs.optional.pvcs.Pvcs.execute(Pvcs.java:26
0)
at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:269)
at org.apache.tools.ant.Task.perform(Task.java:364)
at org.apache.tools.ant.Target.execute(Target.java:301)
at org.apache.tools.ant.Target.performTasks(Target.java:328)
at org.apache.tools.ant.Project.executeTarget(Project.java:1215)
at org.apache.tools.ant.Project.executeTargets(Project.java:1063)
at org.apache.tools.ant.Main.runBuild(Main.java:632)
at org.apache.tools.ant.Main.startAnt(Main.java:183)
at org.apache.tools.ant.launch.Launcher.run(Launcher.java:197)
at org.apache.tools.ant.launch.Launcher.main(Launcher.java:56)
Can somebody tell me what the error is and how do I resolve this?
I appreciate all help you can extend.
Thanks!