Ant - using vssadd to add multiple file
- by mamendex
Hi,
I'm trying to use vssadd task to add a tree of source files to a recent created project on VSS.
But it happens to be adding only the folder tree, all files missing.
<vsscp vsspath="$/DEV/APL_${version}"
ssdir="${vssapl}"
serverPath="${vsssvr}"/>
The vssadd task displays the name of the folders it's creating:
...
(vssadd) $/DEV/APL_0.0.10c/src/domain:
(vssadd) $/DEV/APL_0.0.10c/src/mbeans:
(vssadd) $/DEV/APL_0.0.10c/src/service:
...
The script runs successfully but the files never get in the repository.
Trying to use wilcards are no good, the task says it found no matching files and ss returns with a code of 100:
<vssadd
ssdir="${vssapl}"
localPath="C:\Workspace\APL_Build*.*"
recursive="true"
serverPath="${vsssvr}"
comment="Build ${versao} at ${to.timestamp}"/
I've noticed that vssadd does not accept fileset tag either, so I'm kind of lost here.
Any tips?
tks