TortoiseProc CruiseControl.NET:无法执行文件问题

发布于 2024-11-05 03:12:05 字数 374 浏览 2 评论 0原文

我是 CruiseControl 和自动化构建的新手。我的问题是 ccnet 服务总是提示我“无法执行文件 TortoiseProc.exe /command ...”。我的配置文件看起来像这样

TortoiseProc.exe /command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1

这个命令(tortoiseProc....)在 CMD 窗口中运行良好。 Ccnet 服务使用管理员帐户执行。 “C:\Program Files\TortoiseSVN\bin”位于环境变量中,可以从任何地方执行。如果我从仪表板强制构建,它会完美构建。我感觉这只是一件简单的愚蠢的事情...... 塔克斯

I am new to CruiseControl and automated build. My problem is that the ccnet service always promt me "unable to execute file TortoiseProc.exe /command ...". My config file looks like this

TortoiseProc.exe /command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1

This command(tortoiseProc....) works well in a CMD window. The Ccnet service is execute with an Admin account. "C:\Program Files\TortoiseSVN\bin" is in the environnement variables and can be executed from anywhere. If i force a build from the Dashboard, it builds perfectly. I have the feeling this is just a simple stupid thing...
Tks

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

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

发布评论

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

评论(1

九公里浅绿 2024-11-12 03:12:05

您需要在“buildArgs”元素内单独指定 TortoiseProc.exe 参数与可执行文件名称。以下是适合您情况的 ccnet.config 片段:

  <exec>
    <description>Execute TortoiseProc.exe</description>
    <baseDirectory>c:\path\to\tortoiseproc\folder</baseDirectory>
    <executable>TortoiseProc.exe</executable>
    <buildArgs>/command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1</buildArgs>
  </exec>

此外,您还可以使用命令创建 cmd 文件并使用不带参数的 exec,如果这对您来说更容易的话。

You will need to specify TortoiseProc.exe parameters separately from the executable name, inside "buildArgs" element. Here is the right ccnet.config fragment for your situation:

  <exec>
    <description>Execute TortoiseProc.exe</description>
    <baseDirectory>c:\path\to\tortoiseproc\folder</baseDirectory>
    <executable>TortoiseProc.exe</executable>
    <buildArgs>/command:update /path:C:\Work\global.ad.lib.objectmanagement /closeonend:1</buildArgs>
  </exec>

Also you can create cmd-file with your commands and use exec without parameters, if that would be easier for you.

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