如果我的包/模块名称有空格,如何在 ant build.xml 的 CVS 任务中指定包/模块?

发布于 2024-12-16 00:03:02 字数 734 浏览 0 评论 0原文

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

    <cvs cvsRoot=":pserver:[email protected]:/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。

In build.xml for my project, for checking out the codes, I am writing the following:

    <cvs cvsRoot=":pserver:[email protected]:/CVSREPO_CCP_MIG" dest="${basedir}" package="My Test Project"/>

The following is getting displayed in the console:

  [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.

If I perform the same checkout using a project which doesn't have any spaces in module name, the code checkout is successful.

The Ant version is 1.7.x.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦回旧景 2024-12-23 00:03:03

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

<cvs cvsRoot=":pserver:[email protected]:/CVSREPO_CCP_MIG" dest="${basedir}" package=""My Test Project""/>

现在可以了!

I got right by modifying the CVS task tag to:

<cvs cvsRoot=":pserver:[email protected]:/CVSREPO_CCP_MIG" dest="${basedir}" package=""My Test Project""/>

Now it works!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文