ant 目标 vssget 不起作用

发布于 2024-11-13 07:29:06 字数 1053 浏览 1 评论 0原文

当我运行 ant 目标 vssbuild 时,它给出以下错误。

D:\release>ant vssbuild Buildfile:
build.xml

vssbuild:    [vssget] 'ss' is not
recognized as an internal or external
command,    [vssget] operable program
or batch file.

BUILD FAILED
D:\release\build.xml:141:
Failed executi ng: ss Get $(project)
-GLD:\release\$(lo
calpath) -I-  -R  
-Y$(vssusername),**************   With a return code of 1

我已将系统路径设置为 ss.exe。

下面我展示了我的蚂蚁目标。

<property name="localpath" value="checkout" />
    <property name="project" value="$/NewGen/NextGenComm" />
    <property name="vssusername" value ="ganukep" />
    <property name="vsspassword" value ="123"/>
    <property name="projectlabel" value = "2011.05.20_V1.0.0" />
    <target name="vssbuild"> 
        <vssget vsspath="$(project)" 
              localpath="$(localpath)" 
              recursive="true" 
              login="$(vssusername),$(vsspassword)"
        />     
     </target>

有人可以帮我解决这个问题吗

when I run the ant target vssbuild it gives following error.

D:\release>ant vssbuild Buildfile:
build.xml

vssbuild:    [vssget] 'ss' is not
recognized as an internal or external
command,    [vssget] operable program
or batch file.

BUILD FAILED
D:\release\build.xml:141:
Failed executi ng: ss Get $(project)
-GLD:\release\$(lo
calpath) -I-  -R  
-Y$(vssusername),**************   With a return code of 1

I have set the system path to ss.exe.

below I have shown my ant target.

<property name="localpath" value="checkout" />
    <property name="project" value="$/NewGen/NextGenComm" />
    <property name="vssusername" value ="ganukep" />
    <property name="vsspassword" value ="123"/>
    <property name="projectlabel" value = "2011.05.20_V1.0.0" />
    <target name="vssbuild"> 
        <vssget vsspath="$(project)" 
              localpath="$(localpath)" 
              recursive="true" 
              login="$(vssusername),$(vsspassword)"
        />     
     </target>

Can some one pls help me to solve this issue

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

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

发布评论

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

评论(1

若无相欠,怎会相见 2024-11-20 07:29:06

如果在运行这些进程时收到 CreateProcesss IOError=2,则意味着未找到 ss.exe。检查是否可以从命令行运行它 - 您可能需要更改路径,或设置 ssdir 属性。

它可能不是相同的错误,但它显示了需要做什么才能让 ant 找到 ss.exe。接下来我会尝试设置 ssdir 属性(如果系统路径技巧没有帮助)。

您可能想要构建脚本中的PATH变量 - 也许ant看到一些不同的内容。

If you get a CreateProcesss IOError=2 when running these, it means that ss.exe was not found. Check to see if you can run it from the command line -you may need to alter your path, or set the ssdir property.

It may not be the same error but it shows what needs to be done so that ant can find ss.exe. I'd try setting the ssdir property next (if the system path trick didn't help).

And you may want to <echo> the PATH variable in your build script - maybe ant sees some different content.

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