CruiseControl.net中的空格场分裂路径

发布于 2024-11-05 19:21:12 字数 151 浏览 0 评论 0原文

我使用该字段在 CC.NET 中定义路径,但该路径中有空格。 我在 robocopy 任务中使用该定义。但是,当我在 Cruisecontrol.net 中运行 robocopy 命令时,路径 C:\my items 被解释为 C:\my。

我该如何解决这个问题? 谢谢。

I'm using the field to define a path within CC.NET, but the path has spaces in it.
I use the definition within a robocopy task. However when I run the robocopy command in cruisecontrol.net, the path C:\my projects is being interpreted as C:\my.

How can I get around this problem?
Thanks.

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

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

发布评论

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

评论(1

故人如初 2024-11-12 19:21:12

假设您正在使用预处理器文本常量,它应该是这样的:

<cb:define path=""C:\my projects"" />

作为替代方案,您可以在将预处理器常量传递给 Robocopy 任务时使用引号:

<cb:define path="C:\my projects" />
<!-- ... -->
<sourcecontrol type="robocopy">
  <repositoryRoot>"$(path)"</repositoryRoot>
</sourcecontrol>

Assuming you are using preprocessor text constants it should be something like this:

<cb:define path=""C:\my projects"" />

As an alternative you could use quotation when you pass your preprocessor constant to the Robocopy task:

<cb:define path="C:\my projects" />
<!-- ... -->
<sourcecontrol type="robocopy">
  <repositoryRoot>"$(path)"</repositoryRoot>
</sourcecontrol>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文