0

在我的项目的 build.xml 中,为了检查代码,我写了以下内容:

    <cvs cvsRoot=":pserver:user@xx.xxx.xxx.xx:/CVSREPO_CCP_MIG" dest="${basedir}" package="My Test Project"/>

控制台中将显示以下内容:

  [cvs] cvs server: cannot find module `My' - ignored
  [cvs] cvs server: cannot find module `Test' - ignored
  [cvs] cvs server: cannot find module `Project' - ignored
  [cvs] cvs checkout: No CVSROOT specified!  Please use the `-d' option
  [cvs] cvs [checkout aborted]: or set the CVSROOT environment variable.

如果我使用模块名称中没有任何空格的项目执行相同的检出,则代码检出成功。

Ant 版本是 1.7.x。

4

1 回答 1

2

我通过将 CVS 任务标签修改为:

<cvs cvsRoot=":pserver:user@xx.xxx.xxx.xx:/CVSREPO_CCP_MIG" dest="${basedir}" package="&quot;My Test Project&quot;"/>

现在它起作用了!

于 2011-11-16T12:15:49.360 回答